C compiler test file
authorhpa <hpa>
Wed, 8 Dec 2004 20:22:17 +0000 (20:22 +0000)
committerhpa <hpa>
Wed, 8 Dec 2004 20:22:17 +0000 (20:22 +0000)
win32/hello.c [new file with mode: 0644]

diff --git a/win32/hello.c b/win32/hello.c
new file mode 100644 (file)
index 0000000..b1f7594
--- /dev/null
@@ -0,0 +1,13 @@
+/*
+ * Test program for C compiler; if this doesn't compile, the
+ * C compiler is seriously broken.
+ */
+
+#include <stdlib.h>
+#include <stdio.h>
+
+int main(void)
+{
+  printf("Hello, World!\n");
+  return 0;
+}