summaryrefslogtreecommitdiff
path: root/ext/standard/php_output.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/php_output.h')
-rw-r--r--ext/standard/php_output.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/ext/standard/php_output.h b/ext/standard/php_output.h
index 50f3b4c138..2278cce179 100644
--- a/ext/standard/php_output.h
+++ b/ext/standard/php_output.h
@@ -33,7 +33,12 @@ PHPAPI void php_end_implicit_flush();
PHPAPI char *php_get_output_start_filename();
PHPAPI int php_get_output_start_lineno();
-extern zend_module_entry output_module_entry;
-#define phpext_output_ptr &output_module_entry
+PHP_FUNCTION(ob_start);
+PHP_FUNCTION(ob_end_flush);
+PHP_FUNCTION(ob_end_clean);
+PHP_FUNCTION(ob_get_contents);
+PHP_FUNCTION(ob_implicit_flush);
+
+PHP_GINIT_FUNCTION(output);
#endif /* _OUTPUT_BUFFER */