helloworld.c 167 B

12345678
  1. #include <shim_table.h>
  2. int main (int argc, char ** argv)
  3. {
  4. shim_write(1, "Hello world\n", 12);
  5. shim_exit_group(0);
  6. return 0; // should not reach here.
  7. }