summaryrefslogtreecommitdiff
path: root/regress/usr.bin/libtool/c.c
blob: eb9accfa9e0d937db566c20b3b0d74033a11878a (plain)
1
2
3
4
5
6
7
8
9
10
/* $OpenBSD: c.c,v 1.1 2012/07/02 12:02:36 espie Exp $ */
#include <stdio.h>

extern int g();

int main()
{
	printf("%d\n", g());
	return 0;
}