diff options
| author | Karl Heuer | 1996-07-15 19:57:23 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-07-15 19:57:23 +0000 |
| commit | 133319abf8633541034113c4b12da5f91d86b7ad (patch) | |
| tree | d453e4174cd62e93b90fc9f2677c8e6236364190 /lib-src | |
| parent | 4eb8218d14627292632167a36687743447d8e402 (diff) | |
| download | emacs-133319abf8633541034113c4b12da5f91d86b7ad.tar.gz emacs-133319abf8633541034113c4b12da5f91d86b7ad.zip | |
(getwd): Correct return type.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ntlib.c | 2 |
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) | |||
| 41 | } | 41 | } |
| 42 | 42 | ||
| 43 | /* Get the current working directory. */ | 43 | /* Get the current working directory. */ |
| 44 | int | 44 | char * |
| 45 | getwd (char *dir) | 45 | getwd (char *dir) |
| 46 | { | 46 | { |
| 47 | if (GetCurrentDirectory (MAXPATHLEN, dir) > 0) | 47 | if (GetCurrentDirectory (MAXPATHLEN, dir) > 0) |