summaryrefslogtreecommitdiff
path: root/output.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-05-05 21:05:44 +0000
committerZeev Suraski <zeev@php.net>1999-05-05 21:05:44 +0000
commitaee864e9d8e9f7eed671f8ccfe1f9ed68202161e (patch)
tree22e53f5dc323061f21fcccec28fed038e647919d /output.c
parent2740382c2c5758e72850e8357046b94b9ac3e5e4 (diff)
downloadphp-git-aee864e9d8e9f7eed671f8ccfe1f9ed68202161e.tar.gz
Get CGI to work with the new headers code.
Now Apache is the only interface that doesn't use it.
Diffstat (limited to 'output.c')
-rw-r--r--output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/output.c b/output.c
index 327ed06fb8..d7ffcc981e 100644
--- a/output.c
+++ b/output.c
@@ -19,8 +19,8 @@
#include "SAPI.h"
/* output functions */
-int (*zend_body_write)(const char *str, uint str_length); /* string output */
-int (*zend_header_write)(const char *str, uint str_length); /* unbuffer string output */
+PHPAPI int (*zend_body_write)(const char *str, uint str_length); /* string output */
+PHPAPI int (*zend_header_write)(const char *str, uint str_length); /* unbuffer string output */
static int zend_ub_body_write(const char *str, uint str_length);
static int zend_ub_body_write_no_header(const char *str, uint str_length);
static int zend_b_body_write(const char *str, uint str_length);