.h files should stand alone, but we shouldn't include <sys/types.h>
[gnulib.git] / lib / strcasecmp.c
index ae7601d..cf4ab88 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))