From 06907c4ce4e2a695a6607c2f8940e5723b2db57d Mon Sep 17 00:00:00 2001 From: hpa Date: Wed, 8 Dec 2004 20:22:17 +0000 Subject: [PATCH] C compiler test file --- win32/hello.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 win32/hello.c diff --git a/win32/hello.c b/win32/hello.c new file mode 100644 index 0000000..b1f7594 --- /dev/null +++ b/win32/hello.c @@ -0,0 +1,13 @@ +/* + * Test program for C compiler; if this doesn't compile, the + * C compiler is seriously broken. + */ + +#include +#include + +int main(void) +{ + printf("Hello, World!\n"); + return 0; +} -- 2.7.4