buildgcc: Add option to use ccache
[coreboot.git] / util / romcc / tests / linux_test1.c
1 #include "linux_syscall.h"
2
3 static void main(void)
4 {
5         static const char msg[] = "hello world\r\n";
6         write(STDOUT_FILENO, msg, sizeof(msg));
7         _exit(0);
8 }