diff options
author | Jim Meyering <jim@meyering.net> | 2003-03-14 12:52:13 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-03-14 12:52:13 +0000 |
commit | 3cb04081fb8f2110dd13b0d7373b871580b6a464 (patch) | |
tree | 97b2d5f85fbe18b9f3c0437b8e054cbace0edaad /lib | |
parent | 766de40ee7f5e6e22f21200d3c0a42b0100fab18 (diff) | |
download | coreutils-3cb04081fb8f2110dd13b0d7373b871580b6a464.tar.xz |
Include "xalloc.h".
Diffstat (limited to 'lib')
-rw-r--r-- | lib/stat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stat.c b/lib/stat.c index f3f373b95..3f77562be 100644 --- a/lib/stat.c +++ b/lib/stat.c @@ -1,7 +1,7 @@ /* Work around the bug in some systems whereby stat/lstat succeeds when given the zero-length file name argument. The stat/lstat from SunOS4.1.4 has this bug. - Copyright (C) 1997-2002 Free Software Foundation, Inc. + Copyright (C) 1997-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 @@ -53,7 +53,7 @@ extern int errno; void free (); # endif -char *xmalloc (); +# include "xalloc.h" /* lstat works differently on Linux and Solaris systems. POSIX (see `pathname resolution' in the glossary) requires that programs like `ls' |