This commit is contained in:
call-cc 2020-06-01 15:56:27 -04:00
parent 152ad26d8c
commit ba25b37b95
1 changed files with 9 additions and 0 deletions

9
src/pwd.c Normal file
View File

@ -0,0 +1,9 @@
#include <unistd.h>
#include <stdio.h>
int
main() {
puts(getcwd(NULL, 0));
return 1;
}