diff options
author | Anatol Belski <ab@php.net> | 2014-05-04 21:26:53 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-05-04 21:26:53 +0200 |
commit | 031cafd4e2670992f5e45d281ab3a5eb666748c5 (patch) | |
tree | fe11b5e752fb577e3b418dfd67afcd78d7bcbe7d | |
parent | 003ba74d99846755e5c2b5f562531f9b12d9bfb1 (diff) | |
download | php-git-031cafd4e2670992f5e45d281ab3a5eb666748c5.tar.gz |
added missing stdint header, bug #66907
-rw-r--r-- | ext/fileinfo/libmagic/strcasestr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/fileinfo/libmagic/strcasestr.c b/ext/fileinfo/libmagic/strcasestr.c index 546ed3f96c..e1434e69e7 100644 --- a/ext/fileinfo/libmagic/strcasestr.c +++ b/ext/fileinfo/libmagic/strcasestr.c @@ -37,6 +37,8 @@ __RCSID("$NetBSD: strcasestr.c,v 1.3 2005/11/29 03:12:00 christos Exp $"); __RCSID("$NetBSD: strncasecmp.c,v 1.2 2007/06/04 18:19:27 christos Exp $"); #endif /* LIBC_SCCS and not lint */ +#include "php_stdint.h" + #include <assert.h> #include <ctype.h> #include <string.h> |