ELFIO/tests/elf_examples/hello.c

9 lines
75 B
C
Raw Normal View History

2012-11-27 09:45:28 +00:00
#include <stdio.h>
int main()
{
printf( "Hello\n" );
return 0;
}