From: Karl Heuer Date: Mon, 15 Jul 1996 19:57:11 +0000 (+0000) Subject: Correct return type of getwd. X-Git-Tag: emacs-19.34~188 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4eb8218d14627292632167a36687743447d8e402;p=emacs.git Correct return type of getwd. --- diff --git a/lib-src/ntlib.h b/lib-src/ntlib.h index 1598a291e73..39df4d03fd4 100644 --- a/lib-src/ntlib.h +++ b/lib-src/ntlib.h @@ -23,7 +23,7 @@ #include void sleep(int seconds); -int getwd (char *dir); +char *getwd (char *dir); int getppid(void); char * getlogin (); char * cuserid (char * s);