1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(getwd): Correct return type.

This commit is contained in:
Karl Heuer 1996-07-15 19:57:23 +00:00
parent 4eb8218d14
commit 133319abf8

View File

@ -41,7 +41,7 @@ sleep(int seconds)
}
/* Get the current working directory. */
int
char *
getwd (char *dir)
{
if (GetCurrentDirectory (MAXPATHLEN, dir) > 0)