occlum/test/hello_world/main.c
Tate, Hongliang Tian 4107a65248 Enable libc's printf
2019-02-16 16:23:30 +08:00

11 lines
159 B
C

#include <unistd.h>
#include <string.h>
#include <stdio.h>
static const char* msg = "Hello World\n";
int main(void) {
printf("%s", msg);
return 0;
}