diff options
author | hpa <hpa> | 2004-12-08 20:22:17 +0000 |
---|---|---|
committer | hpa <hpa> | 2004-12-08 20:22:17 +0000 |
commit | 06907c4ce4e2a695a6607c2f8940e5723b2db57d (patch) | |
tree | 1ad7fa32a60fb02769e3c057ccf237ba862e766d /win32 | |
parent | 398390eb7fb4b6ccbc556d9385182c66ed0842e3 (diff) | |
download | syslinux-elf-06907c4ce4e2a695a6607c2f8940e5723b2db57d.tar.gz syslinux-elf-06907c4ce4e2a695a6607c2f8940e5723b2db57d.tar.xz syslinux-elf-06907c4ce4e2a695a6607c2f8940e5723b2db57d.zip |
C compiler test file
Diffstat (limited to 'win32')
-rw-r--r-- | win32/hello.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/win32/hello.c b/win32/hello.c new file mode 100644 index 00000000..b1f75944 --- /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 <stdlib.h> +#include <stdio.h> + +int main(void) +{ + printf("Hello, World!\n"); + return 0; +} |