aboutsummaryrefslogtreecommitdiffstats
path: root/win/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'win/hello.c')
-rw-r--r--win/hello.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/win/hello.c b/win/hello.c
new file mode 100644
index 00000000..4934689b
--- /dev/null
+++ b/win/hello.c
@@ -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;
+}