]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Include xgetcwd.h.
authorJim Meyering <jim@meyering.net>
Fri, 10 Jan 2003 22:45:14 +0000 (22:45 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 10 Jan 2003 22:45:14 +0000 (22:45 +0000)
lib/xgetcwd.c

index 1409bcfba7d684d628e6b1283a2e7303f1d6dd4e..c01491a483d50d2a9997b5d58af17414f8fb158b 100644 (file)
@@ -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);