diff options
author | Jim Meyering <jim@meyering.net> | 2003-01-10 22:45:14 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-01-10 22:45:14 +0000 |
commit | 784d409601c64fc701d3fce1cc3ac7015e74699c (patch) | |
tree | 3069695adbafce6711f30f46db985288805fd1fd | |
parent | e690564cc94bc34f465063d992da4ac176f36144 (diff) | |
download | coreutils-784d409601c64fc701d3fce1cc3ac7015e74699c.tar.xz |
Include xgetcwd.h.
-rw-r--r-- | lib/xgetcwd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/xgetcwd.c b/lib/xgetcwd.c index 1409bcfba..c01491a48 100644 --- a/lib/xgetcwd.c +++ b/lib/xgetcwd.c @@ -1,5 +1,5 @@ /* xgetcwd.c -- return current directory with unlimited length - Copyright (C) 1992, 1996, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -46,12 +46,13 @@ char *getwd (); #endif #include "xalloc.h" +#include "xgetcwd.h" /* Return the current directory, newly allocated, arbitrarily long. Return NULL and set errno on error. */ char * -xgetcwd () +xgetcwd (void) { #if HAVE_GETCWD_NULL char *cwd = getcwd (NULL, 0); |