xref: /openbsd-src/regress/usr.bin/libtool/c.c (revision a75ed7abf6cd4005e7738c157141116bb02c3419)
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 
main()6 int main()
7 {
8 	printf("%d\n", g());
9 	return 0;
10 }
11