summaryrefslogtreecommitdiff
path: root/ext/standard/string.c
diff options
context:
space:
mode:
authorMichael Wallner <mike@php.net>2013-08-06 22:45:35 +0200
committerMichael Wallner <mike@php.net>2013-08-06 22:49:56 +0200
commit14caf174ff219376e4f1234bd297ffe973cc416e (patch)
tree73532567f2c68b42ad55efbbaf1d85d7f81f6255 /ext/standard/string.c
parentca0497bba2222c282c39048776a9f61052e67643 (diff)
downloadphp-git-14caf174ff219376e4f1234bd297ffe973cc416e.tar.gz
unify stdint type usage
if you need C99 stdint types, just include "php_stdint.h"
Diffstat (limited to 'ext/standard/string.c')
-rw-r--r--ext/standard/string.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c
index 6a67efbd7e..5ae729af0f 100644
--- a/ext/standard/string.c
+++ b/ext/standard/string.c
@@ -13,7 +13,7 @@
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Rasmus Lerdorf <rasmus@php.net> |
- | Stig Sæther Bakken <ssb@php.net> |
+ | Stig S�ther Bakken <ssb@php.net> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
@@ -23,11 +23,6 @@
/* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
#include <stdio.h>
-#ifdef PHP_WIN32
-# include "win32/php_stdint.h"
-#else
-# include <stdint.h>
-#endif
#include "php.h"
#include "php_rand.h"
#include "php_string.h"