summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-06-06 22:20:29 +0000
committerJim Meyering <jim@meyering.net>2003-06-06 22:20:29 +0000
commit6926a9ca677f546b7d4657e0c2fb0f94b35a23da (patch)
tree518548de9b6457216c2ab395b7ac9a4eb25bd7a4
parent2ebe20a54b18a5a8d9d4e9dd7913297e99e17a4c (diff)
downloadcoreutils-6926a9ca677f546b7d4657e0c2fb0f94b35a23da.tar.xz
Include <stddef.h>, not <sys/types.h>.
-rw-r--r--lib/strcasecmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strcasecmp.c b/lib/strcasecmp.c
index ae7601de0..cf4ab88db 100644
--- a/lib/strcasecmp.c
+++ b/lib/strcasecmp.c
@@ -29,7 +29,7 @@
# define LENGTH_LIMIT_EXPR(Expr) 0
#endif
-#include <sys/types.h>
+#include <stddef.h>
#include <ctype.h>
#define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))