]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Include <stddef.h>, not <sys/types.h>.
authorJim Meyering <jim@meyering.net>
Fri, 6 Jun 2003 22:20:29 +0000 (22:20 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 6 Jun 2003 22:20:29 +0000 (22:20 +0000)
lib/strcasecmp.c

index ae7601de0fcf9d6d3d1ad547705ec769c1ba6b93..cf4ab88dbdf04448b73d8507f1cbe142d15f67e8 100644 (file)
@@ -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))