mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
fix warnings
This commit is contained in:
parent
7a94243402
commit
570ed1a1a4
5 changed files with 13 additions and 3 deletions
|
@ -162,8 +162,8 @@ PHPAPI ZEND_EXTERN_MODULE_GLOBALS(output);
|
|||
#define PHPWRITE(str, str_len) php_output_write((str), (str_len))
|
||||
#define PHPWRITE_H(str, str_len) php_output_write_unbuffered((str), (str_len))
|
||||
|
||||
#define PUTC(c) (php_output_write(&(c), 1), (c))
|
||||
#define PUTC_H(c) (php_output_write_unbuffered(&(c), 1), (c))
|
||||
#define PUTC(c) (php_output_write((const char *) &(c), 1), (c))
|
||||
#define PUTC_H(c) (php_output_write_unbuffered((const char *) &(c), 1), (c))
|
||||
|
||||
#define PUTS(str) do { \
|
||||
const char *__str = (str); \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue