1/* a trivial function used to test building shared libraries */
2
3int foo(void);
4
5int foo(void)
6{
7	return 1;
8}
9