summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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))