Files
graphene/LibOS/shim/test/regression/shared_object.c

10 lines
110 B
C

/* a simple helloworld test */
#include <stdio.h>
int main()
{
printf("Hello world\n");
return 0;
}