From dcc60b7f4a3ffb8829d5971551c74e111bdccaf5 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Wed, 18 Jul 2001 22:55:52 +0000 Subject: The lcg needs to operate on signed 32-bit integers, so use the proper php_int32 types here. --- ext/standard/php_lcg.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ext/standard/php_lcg.h') diff --git a/ext/standard/php_lcg.h b/ext/standard/php_lcg.h index 1cb5fb009c..4abe6a13ce 100644 --- a/ext/standard/php_lcg.h +++ b/ext/standard/php_lcg.h @@ -21,9 +21,11 @@ #ifndef PHP_LCG_H #define PHP_LCG_H +#include "ext/standard/basic_functions.h" + typedef struct { - long s1; - long s2; + php_int32 s1; + php_int32 s2; } php_lcg_globals; double php_combined_lcg(void); -- cgit v1.2.1