]> git.eshelyaron.com Git - emacs.git/commitdiff
(getwd): Correct return type.
authorKarl Heuer <kwzh@gnu.org>
Mon, 15 Jul 1996 19:57:23 +0000 (19:57 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 15 Jul 1996 19:57:23 +0000 (19:57 +0000)
lib-src/ntlib.c

index 5acc8363437900bd94fbff8cf0dd109c84967706..d5f6177f4a269855c355100a8426c2666435de3f 100644 (file)
@@ -41,7 +41,7 @@ sleep(int seconds)
 }
 
 /* Get the current working directory.  */
-int
+char *
 getwd (char *dir)
 {
   if (GetCurrentDirectory (MAXPATHLEN, dir) > 0)