xref: /openbsd-src/regress/usr.bin/libtool/c.c (revision f6aab3d83b51b91c24247ad2c2573574de475a82)
1 /* $OpenBSD: c.c,v 1.1 2012/07/02 12:02:36 espie Exp $ */
2 #include <stdio.h>
3 
4 extern int g();
5 
6 int main()
7 {
8 	printf("%d\n", g());
9 	return 0;
10 }
11