diff options
author | Jim Meyering <jim@meyering.net> | 2002-11-22 13:23:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-11-22 13:23:52 +0000 |
commit | 17bbb9bcb17642ba35fcdec3e01c5e5b37e1f55b (patch) | |
tree | 999cf5b71a551fa77630db14b3603e62ad5aac47 /lib | |
parent | d81d040dea408a3e8ba3a1668fa3cfbcebc16a39 (diff) | |
download | coreutils-17bbb9bcb17642ba35fcdec3e01c5e5b37e1f55b.tar.xz |
From gnulib:
Don't include <sys/types.h>. It's unnecessary.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/strstr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/strstr.c b/lib/strstr.c index c41e90349..50a90c252 100644 --- a/lib/strstr.c +++ b/lib/strstr.c @@ -31,7 +31,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #if defined _LIBC || defined HAVE_STRING_H # include <string.h> #endif -#include <sys/types.h> typedef unsigned chartype; |