diff options
Diffstat (limited to 'contrib/syslinux-4.02/win/hello.c')
-rw-r--r-- | contrib/syslinux-4.02/win/hello.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/win/hello.c b/contrib/syslinux-4.02/win/hello.c new file mode 100644 index 0000000..4934689 --- /dev/null +++ b/contrib/syslinux-4.02/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; +} |