k9core/src/pwd.c

9 lines
92 B
C
Raw Normal View History

2020-06-01 19:56:27 +00:00
#include <unistd.h>
#include <stdio.h>
int
main() {
puts(getcwd(NULL, 0));
return 1;
}