blob: ee821480315c78c2df28d67e25507bc2fb3e4613 [file] [log] [blame]
#include "linux_syscall.h"
static void main(void)
{
static const char msg[] = "hello world\r\n";
write(STDOUT_FILENO, msg, sizeof(msg));
_exit(0);
}