aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorKarl Heuer1996-07-15 19:57:11 +0000
committerKarl Heuer1996-07-15 19:57:11 +0000
commit4eb8218d14627292632167a36687743447d8e402 (patch)
treed4633ff0dfcd474c8b59120f417d6edb5f2b632b /lib-src
parentbbc2d5d23522e815004f2852708d4108db2727d1 (diff)
downloademacs-4eb8218d14627292632167a36687743447d8e402.tar.gz
emacs-4eb8218d14627292632167a36687743447d8e402.zip
Correct return type of getwd.
Diffstat (limited to 'lib-src')
-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 @@
23#include <malloc.h> 23#include <malloc.h>
24 24
25void sleep(int seconds); 25void sleep(int seconds);
26int getwd (char *dir); 26char *getwd (char *dir);
27int getppid(void); 27int getppid(void);
28char * getlogin (); 28char * getlogin ();
29char * cuserid (char * s); 29char * cuserid (char * s);