diff lib-src/ntlib.c @ 15675:e5b420bac4e9

(getwd): Correct return type.
author Karl Heuer <kwzh@gnu.org>
date Mon, 15 Jul 1996 19:57:23 +0000
parents 92326afec2a6
children 4a0cf10c12f2
line wrap: on
line diff
--- a/lib-src/ntlib.c	Mon Jul 15 19:57:11 1996 +0000
+++ b/lib-src/ntlib.c	Mon Jul 15 19:57:23 1996 +0000
@@ -41,7 +41,7 @@
 }
 
 /* Get the current working directory.  */
-int
+char *
 getwd (char *dir)
 {
   if (GetCurrentDirectory (MAXPATHLEN, dir) > 0)