Renamed "internal.h" to the more sensible "busybox.h".
[oweals/busybox.git] / coreutils / pwd.c
index 87553b3de38a017c8798d1312a46c630c0b6dfa1..c9de7778eec0765c75a1da43a1d2e4a553b560b9 100644 (file)
@@ -21,7 +21,7 @@
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
 #include <dirent.h>
 #include <errno.h>
@@ -31,7 +31,7 @@ extern int pwd_main(int argc, char **argv)
        char buf[BUFSIZ + 1];
 
        if (getcwd(buf, sizeof(buf)) == NULL)
-               fatalError("pwd: %s\n", strerror(errno));
+               fatalError("%s\n", strerror(errno));
 
        printf("%s\n", buf);
        return(TRUE);