diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-07-15 19:57:11 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-07-15 19:57:11 +0000 |
commit | 4eb8218d14627292632167a36687743447d8e402 (patch) | |
tree | d4633ff0dfcd474c8b59120f417d6edb5f2b632b /lib-src/ntlib.h | |
parent | bbc2d5d23522e815004f2852708d4108db2727d1 (diff) | |
download | emacs-4eb8218d14627292632167a36687743447d8e402.tar.gz |
Correct return type of getwd.
Diffstat (limited to 'lib-src/ntlib.h')
-rw-r--r-- | lib-src/ntlib.h | 2 |
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); |