summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-07-15 19:57:11 +0000
committerKarl Heuer <kwzh@gnu.org>1996-07-15 19:57:11 +0000
commit8116ce3a7361d63dbb63d76ee31ce0af19634687 (patch)
tree0635a15431c83291356c7e94eb517a2ffeef1bb4
parent149525d20e5c24b40633c89cc0cb2be2fcf1a647 (diff)
downloademacs-8116ce3a7361d63dbb63d76ee31ce0af19634687.tar.gz
Correct return type of getwd.
-rw-r--r--lib-src/ntlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/ntlib.h b/lib-src/ntlib.h
index 1598a291e73..39df4d03fd4 100644
--- a/lib-src/ntlib.h
+++ b/lib-src/ntlib.h
@@ -23,7 +23,7 @@
#include <malloc.h>
void sleep(int seconds);
-int getwd (char *dir);
+char *getwd (char *dir);
int getppid(void);
char * getlogin ();
char * cuserid (char * s);