mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
11 lines
188 B
C
11 lines
188 B
C
|
#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;
|
||
|
}
|