summaryrefslogtreecommitdiff
path: root/ext/bcmath/libbcmath/src/debug.c
diff options
context:
space:
mode:
authorSander Roobol <sander@php.net>2002-11-22 09:25:29 +0000
committerSander Roobol <sander@php.net>2002-11-22 09:25:29 +0000
commitf200f739d8089ac0156ea4064696d32fff45692c (patch)
tree5ba86c6a3ffcdd1229eb043df4515e345fe383dc /ext/bcmath/libbcmath/src/debug.c
parent64a75d6d7714e199814a67980abdd2672c69ba07 (diff)
downloadphp-git-f200f739d8089ac0156ea4064696d32fff45692c.tar.gz
Made bcmath extension thread safe.
@Made bcmath extension thread safe. (Sander)
Diffstat (limited to 'ext/bcmath/libbcmath/src/debug.c')
-rw-r--r--ext/bcmath/libbcmath/src/debug.c5
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');
}