mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00
Made bcmath extension thread safe.
@Made bcmath extension thread safe. (Sander)
This commit is contained in:
parent
64a75d6d77
commit
f200f739d8
14 changed files with 186 additions and 202 deletions
|
@ -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');
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue