Files
graphene/LibOS/shim/test/native/system.c

9 lines
129 B
C

#include <stdlib.h>
int main(int argc, char** argv) {
if (system("./helloworld")) {
return 1;
}
return 0;
}