summaryrefslogtreecommitdiff
path: root/ext/standard/php_lcg.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/php_lcg.h')
-rw-r--r--ext/standard/php_lcg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/php_lcg.h b/ext/standard/php_lcg.h
index 60850d6c7c..2c24756012 100644
--- a/ext/standard/php_lcg.h
+++ b/ext/standard/php_lcg.h
@@ -24,8 +24,8 @@
#include "ext/standard/basic_functions.h"
typedef struct {
- php_int32 s1;
- php_int32 s2;
+ int32_t s1;
+ int32_t s2;
int seeded;
} php_lcg_globals;