diff options
author | Derick Rethans <derick@php.net> | 2001-09-03 17:38:10 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2001-09-03 17:38:10 +0000 |
commit | 383691eec2cbb8bdab07d7902ec1b280658c5508 (patch) | |
tree | c458544cd9ddc6a42e4564efab1782c5a7f7e12d /ext/standard/rand.c | |
parent | 7c4a0cc6cf3a432376928149b33d578fd7e0871d (diff) | |
download | php-git-383691eec2cbb8bdab07d7902ec1b280658c5508.tar.gz |
- Fix broken build
#- Please test before commit!
Diffstat (limited to 'ext/standard/rand.c')
-rw-r--r-- | ext/standard/rand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/rand.c b/ext/standard/rand.c index d9fba0e160..ef0e41507e 100644 --- a/ext/standard/rand.c +++ b/ext/standard/rand.c @@ -230,7 +230,7 @@ PHPAPI double php_drand(void) /* }}} */ /* {{{ PHPAPI long php_rand_range(long min, long max) */ -PHPAPI long php_rand_range(long min, long max TSRMLS_D) +PHPAPI long php_rand_range(long min, long max TSRMLS_DC) { register long result; |