diff options
author | Sander Roobol <sander@php.net> | 2002-11-22 09:27:08 +0000 |
---|---|---|
committer | Sander Roobol <sander@php.net> | 2002-11-22 09:27:08 +0000 |
commit | 0debfe11635fd663fff03efbfba219d95e95798f (patch) | |
tree | ddc3cf0eab3ab68aa93136a857055862f18d89c8 /ext/bcmath/libbcmath/src/debug.c | |
parent | 3652c75a5d80375650d67c31542382ad1f855641 (diff) | |
download | php-git-0debfe11635fd663fff03efbfba219d95e95798f.tar.gz |
MFH
@Made bcmath extension thread safe. (Sander)
Diffstat (limited to 'ext/bcmath/libbcmath/src/debug.c')
-rw-r--r-- | ext/bcmath/libbcmath/src/debug.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/bcmath/libbcmath/src/debug.c b/ext/bcmath/libbcmath/src/debug.c index ac1ee4ada7..52e4e044d5 100644 --- a/ext/bcmath/libbcmath/src/debug.c +++ b/ext/bcmath/libbcmath/src/debug.c @@ -48,10 +48,9 @@ out_char (int c) void -pn (num) - bc_num num; +pn (bc_num num TSRMLS_DC) { - bc_out_num (num, 10, out_char, 0); + bc_out_num (num, 10, out_char, 0 TSRMLS_CC); out_char ('\n'); } |