samba/tests/shlib.c

9 lines
110 B
C

/* a trivial function used to test building shared libraries */
int foo(void);
int foo(void)
{
return 1;
}