allwinner_a64/android/external/syslinux/win/hello.c
2018-08-08 16:14:42 +08:00

13 lines
208 B
C

/*
* 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;
}