Files
graphene/LibOS/shim/test/inline/helloworld.c

9 lines
167 B
C

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