summaryrefslogtreecommitdiff
path: root/examples/hello_autoconf/proj/hello_autoconf.c
blob: 111fc7e779aa4c2508bb783684545010588986c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <config.h>

#ifdef HAVE_STDIO_H
#include <stdio.h>
#endif

int main (int argc, char **argv)
{
	puts (MSG);
	return 0;
}