diff options
author | Jim Meyering <meyering@redhat.com> | 2008-01-02 17:48:09 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-01-04 16:17:16 +0100 |
commit | 8d89b6b23e297a60385ce7576dbd13ea14acbbe1 (patch) | |
tree | f95583ae81a824b1eaff1bc3abf5edc41f27eb8e /libidu | |
parent | 447bbb9ae4fd8190817001e3c7065a504721cd0a (diff) | |
download | idutils-8d89b6b23e297a60385ce7576dbd13ea14acbbe1.tar.gz idutils-8d89b6b23e297a60385ce7576dbd13ea14acbbe1.tar.bz2 idutils-8d89b6b23e297a60385ce7576dbd13ea14acbbe1.zip |
Don't include <strsep.h>. Now it's guaranteed to be in <string.h>.
* libidu/walker.c: Don't include <strsep.h>.
* libidu/idfile.c: Likewise.
* libidu/scanners.c: Likewise.
Signed-off-by: Jim Meyering <meyering@redhat.com>
Diffstat (limited to 'libidu')
-rw-r--r-- | libidu/idfile.c | 3 | ||||
-rw-r--r-- | libidu/scanners.c | 3 | ||||
-rw-r--r-- | libidu/walker.c | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/libidu/idfile.c b/libidu/idfile.c index fb77efb..5ba9f11 100644 --- a/libidu/idfile.c +++ b/libidu/idfile.c @@ -1,5 +1,5 @@ /* idfile.c -- read & write mkid database file header - Copyright (C) 1986, 1995, 1996, 1999, 2000, 2007 + Copyright (C) 1986, 1995, 1996, 1999, 2000, 2007-2008 Free Software Foundation, Inc. Written by Greg McGary <gkm@gnu.ai.mit.edu> @@ -22,7 +22,6 @@ #include <errno.h> #include <stdlib.h> #include <string.h> -#include <strsep.h> #include "lstat.h" #include <obstack.h> #include <error.h> diff --git a/libidu/scanners.c b/libidu/scanners.c index 6cc614c..cac4f56 100644 --- a/libidu/scanners.c +++ b/libidu/scanners.c @@ -1,5 +1,5 @@ /* scanners.c -- file & directory name manipulations - Copyright (C) 1986, 1995, 1996, 1999, 2000, 2007 + Copyright (C) 1986, 1995, 1996, 1999, 2000, 2007-2008 Free Software Foundation, Inc. Written by Greg McGary <gkm@gnu.ai.mit.edu> @@ -27,7 +27,6 @@ #include <unistd.h> #include "lstat.h" #include <string.h> -#include <strsep.h> #include <errno.h> #include <xalloc.h> #include <error.h> diff --git a/libidu/walker.c b/libidu/walker.c index ae0b2de..4bd7a88 100644 --- a/libidu/walker.c +++ b/libidu/walker.c @@ -1,5 +1,5 @@ /* walker.c -- nifty file-tree walker - Copyright (C) 1986, 1995, 1996, 1999, 2000, 2007 + Copyright (C) 1986, 1995, 1996, 1999, 2000, 2008 Free Software Foundation, Inc. Written by Greg McGary <gkm@gnu.ai.mit.edu> @@ -24,7 +24,6 @@ #include <stddef.h> #include <unistd.h> #include <string.h> -#include <strsep.h> #include <fnmatch.h> #include <dirent.h> #include <errno.h> |