d9ab54e486af68748c89dabb2985fb960100175c
[oweals/busybox.git] / pwd.c
1 #include "internal.h"
2 #include <stdio.h>
3
4 const char      pwd_usage[] = "Print the current directory.\n";
5
6 extern int
7 pwd_main(struct FileInfo * i, int argc, char * * argv)
8 {
9         char            buf[1024];
10
11         if ( getcwd(buf, sizeof(buf)) == NULL ) {
12                 name_and_error("get working directory");
13                 return 1;
14         }
15
16         printf("%s\n", buf);
17         return 0;
18 }