wasmer/lib/emscripten/emtests/test_getcwd.c

11 lines
188 B
C
Raw Normal View History

2019-02-22 20:32:14 +00:00
#include <stdio.h>
#include <unistd.h>
int main() {
const unsigned int size = 256;
char cwd[size] = {};
char* buf = getcwd(cwd, size);
printf("getcwd\n");
return 0;
}