1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-03-23 19:40:51 +00:00

11 lines
188 B
C
Raw Normal View History

2019-02-22 12:32:14 -08: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;
}