changeset 15675:e5b420bac4e9

(getwd): Correct return type.
author Karl Heuer <kwzh@gnu.org>
date Mon, 15 Jul 1996 19:57:23 +0000
parents 772d00a51db0
children 46d74bda4351
files lib-src/ntlib.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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)