runkernel: remove debugging code
[syslinux.git] / win32 / hello.c
blobb1f759449f14b1c285ed8b9a3921bc8dc2d85abb
1 /*
2 * Test program for C compiler; if this doesn't compile, the
3 * C compiler is seriously broken.
4 */
6 #include <stdlib.h>
7 #include <stdio.h>
9 int main(void)
11 printf("Hello, World!\n");
12 return 0;