diff options
author | Anatol Belski <ab@php.net> | 2014-12-13 23:06:14 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-12-13 23:06:14 +0100 |
commit | bdeb220f48825642f84cdbf3ff23a30613c92e86 (patch) | |
tree | 1a6cf34d20420e4815b4becb21311a4457d84103 /ext/bcmath/libbcmath/src/debug.c | |
parent | bb66f385d09e7e55390e9f57fcbca08f6b43ff91 (diff) | |
download | php-git-bdeb220f48825642f84cdbf3ff23a30613c92e86.tar.gz |
first shot remove TSRMLS_* things
Diffstat (limited to 'ext/bcmath/libbcmath/src/debug.c')
-rw-r--r-- | ext/bcmath/libbcmath/src/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bcmath/libbcmath/src/debug.c b/ext/bcmath/libbcmath/src/debug.c index 52e4e044d5..0e3b64ac01 100644 --- a/ext/bcmath/libbcmath/src/debug.c +++ b/ext/bcmath/libbcmath/src/debug.c @@ -48,9 +48,9 @@ out_char (int c) void -pn (bc_num num TSRMLS_DC) +pn (bc_num num) { - bc_out_num (num, 10, out_char, 0 TSRMLS_CC); + bc_out_num (num, 10, out_char, 0); out_char ('\n'); } |