summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-07-15 19:57:23 +0000
committerKarl Heuer <kwzh@gnu.org>1996-07-15 19:57:23 +0000
commitdda881c681f9259ccb20523d8d2b87baabc6c66e (patch)
tree2cd6a824b98ca50edb00496b54868100891ce2fd
parent8116ce3a7361d63dbb63d76ee31ce0af19634687 (diff)
downloademacs-dda881c681f9259ccb20523d8d2b87baabc6c66e.tar.gz
(getwd): Correct return type.
-rw-r--r--lib-src/ntlib.c2
1 files changed, 1 insertions, 1 deletions
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)