helloworld.c 166 B

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