k9core/src/pwd.c

10 lines
92 B
C

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