k9core/src/pwd.c

10 lines
92 B
C
Raw Normal View History

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