1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-27 05:49:32 +03:00
Files
samba-mirror/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;
}