From 2467dd6d05d97805cfbe027f9be4b4cfac8d9a25 Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Wed, 1 Dec 1999 22:59:45 +0000 Subject: @Fix some warnings when compiling in maintainer-mode (Stig) @Made mysql and gd work as shared extensions again (Stig) - Fixed some warnings in maintainer-mode. - Made mysql and gd work as shared extensions again by defining COMPILE_DL if PIC is defined. # We need a better solution for building .so extensions than this # PIC/COMPILE_DL hack! --- main/php_output.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/php_output.h') diff --git a/main/php_output.h b/main/php_output.h index 00fd789078..9eeb17c80b 100644 --- a/main/php_output.h +++ b/main/php_output.h @@ -22,10 +22,10 @@ #include "php.h" -PHPAPI void php_output_startup(); +PHPAPI void php_output_startup(void); PHPAPI int php_body_write(const char *str, uint str_length); PHPAPI int php_header_write(const char *str, uint str_length); -PHPAPI void php_start_ob_buffering(); +PHPAPI void php_start_ob_buffering(void); PHPAPI void php_end_ob_buffering(int send_buffer); extern zend_module_entry output_module_entry; -- cgit v1.2.1