diff options
author | Pedro J. Ruiz Lopez <holzplatten@es.gnu.org> | 2008-10-22 08:05:31 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-10-22 08:05:31 +0200 |
commit | f915d6db854f10a2acc902aa2755974ba115a603 (patch) | |
tree | 9e86295f0f52d45866b51b40ee26c4ece23f3a14 /src | |
parent | f5802e049254e19349168f312a27882b78df8c31 (diff) | |
download | idutils-f915d6db854f10a2acc902aa2755974ba115a603.tar.gz idutils-f915d6db854f10a2acc902aa2755974ba115a603.tar.bz2 idutils-f915d6db854f10a2acc902aa2755974ba115a603.zip |
accommodate gnulib header removals
* libidu/idfile.c: Include <sys/stat.h>, not "lstat.h".
* libidu/scanners.c: Likewise.
* libidu/walker.c: Likewise.
* src/mkid.c: Likewise.
Diffstat (limited to 'src')
-rw-r--r-- | src/mkid.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,6 @@ #include <stdio.h> #include <errno.h> #include <getopt.h> -#include "lstat.h" #include <stddef.h> #include <unistd.h> #include <pathmax.h> @@ -33,6 +32,7 @@ #include <inttostr.h> #include <xalloc.h> #include <error.h> +#include <sys/stat.h> #include "closeout.h" #include "xnls.h" |