Files
rk35xx-android14/external/libabigail/tests/data/test-abicompat/test7-fn-changed-libapp-v0.c
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

16 lines
321 B
C

// Compile this with:
// gcc -g -Wall -fPIC -shared -o libtest7-fn-changed-libapp-v0.so test7-fn-changed-libapp-v0.c
#include <stdio.h>
#include "test7-fn-changed-libapp-v0.h"
float add (float a, float b)
{
return a+b;
}
void print (const struct Student s)
{
printf ("Usn = %d \t Name = %s\n", s.usn, s.name);
}