From: Karl Heuer Date: Mon, 15 Jul 1996 19:57:23 +0000 (+0000) Subject: (getwd): Correct return type. X-Git-Tag: emacs-19.34~187 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=133319abf8633541034113c4b12da5f91d86b7ad;p=emacs.git (getwd): Correct return type. --- diff --git a/lib-src/ntlib.c b/lib-src/ntlib.c index 5acc8363437..d5f6177f4a2 100644 --- a/lib-src/ntlib.c +++ b/lib-src/ntlib.c @@ -41,7 +41,7 @@ sleep(int seconds) } /* Get the current working directory. */ -int +char * getwd (char *dir) { if (GetCurrentDirectory (MAXPATHLEN, dir) > 0)