From ea880d2b86729f8dc68c5cb4d7572463d089d9b1 Mon Sep 17 00:00:00 2001 From: "Thies C. Arntzen" Date: Wed, 27 Oct 1999 18:30:41 +0000 Subject: 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) --- main/php.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/php.h') 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)) -- cgit v1.2.1