Skip to content

Commit

Permalink
Merge branch 'PHP-5.4' into PHP-5.5
Browse files Browse the repository at this point in the history
* PHP-5.4:
  fixed build
  NEWS for bug #63893

Conflicts:
	NEWS
  • Loading branch information
weltling committed Jan 15, 2013
2 parents dba22c0 + 9498cf6 commit 18e1604
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ext/standard/string.c
Expand Up @@ -23,7 +23,11 @@
/* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */

#include <stdio.h>
#include <stdint.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"
Expand Down

0 comments on commit 18e1604

Please sign in to comment.