xref: /openbsd-src/regress/usr.bin/libtool/c.c (revision 91f110e064cd7c194e59e019b83bb7496c1c84d4)
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