1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00
samba-mirror/source3/tests/shlib.c
2007-10-10 10:56:46 -05:00

9 lines
110 B
C

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