From 2239a52fecc5e630e61d72b3b13e18bad9c582e0 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 22 Mar 2010 13:01:58 +1100 Subject: build: check if a simple C program runs This will be helpful for working out why AIX is failing --- lib/replace/test/simple.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lib/replace/test/simple.c (limited to 'lib/replace/test') diff --git a/lib/replace/test/simple.c b/lib/replace/test/simple.c new file mode 100644 index 0000000000..e60b68f275 --- /dev/null +++ b/lib/replace/test/simple.c @@ -0,0 +1,8 @@ +/* simple program to make sure the compiler is OK */ +#include + +int main(void) +{ + printf("Hello world\n"); + return 0; +} -- cgit