From 133319abf8633541034113c4b12da5f91d86b7ad Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 15 Jul 1996 19:57:23 +0000 Subject: [PATCH] (getwd): Correct return type. --- lib-src/ntlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5