diff options
author | Thies C. Arntzen <thies@php.net> | 1999-10-27 18:30:41 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 1999-10-27 18:30:41 +0000 |
commit | ea880d2b86729f8dc68c5cb4d7572463d089d9b1 (patch) | |
tree | 9ca5eb989986c52c6aa6ac5c75c93d2790d902a3 /main/php.h | |
parent | c171eecd7aea11c22a8d7b111fc6b8a34b243216 (diff) | |
download | php-git-ea880d2b86729f8dc68c5cb4d7572463d089d9b1.tar.gz |
moved output.c into ext/standart and made it thread-safe.
moved output-buffering related functions from basic_functions to output.c
Win32 project need to be updated to reflect new position.
# i'm not really happy with this solution, but it seemed the easiest one!
# the whole output code is a bit hard to understand...
@- Output-Buffering system is now Thread-Safe. (Thies)
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php.h b/main/php.h index 285fa15f00..98f1dfacb6 100644 --- a/main/php.h +++ b/main/php.h @@ -318,7 +318,7 @@ PHPAPI int cfg_get_string(char *varname, char **result); /* Output support */ -#include "output.h" +#include "ext/standard/php_output.h" #define PHPWRITE(str, str_len) php_body_write((str), (str_len)) #define PUTS(str) php_body_write((str), strlen((str))) #define PUTC(c) (php_body_write(&(c), 1), (c)) |