diff options
author | Zeev Suraski <zeev@php.net> | 1999-05-05 21:05:44 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-05-05 21:05:44 +0000 |
commit | aee864e9d8e9f7eed671f8ccfe1f9ed68202161e (patch) | |
tree | 22e53f5dc323061f21fcccec28fed038e647919d /output.c | |
parent | 2740382c2c5758e72850e8357046b94b9ac3e5e4 (diff) | |
download | php-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |