summaryrefslogtreecommitdiff
path: root/tests/shlib.c
blob: eddb76ff2a27ba20b472b44028f978ec6992895f (plain)
1
2
3
4
5
6
7
8
/* a trivial function used to test building shared libraries */

int foo(void);

int foo(void)
{
	return 1;
}