diff options
| author | Andrey Hristov <andrey@php.net> | 1999-09-04 19:08:19 +0000 |
|---|---|---|
| committer | Andrey Hristov <andrey@php.net> | 1999-09-04 19:08:19 +0000 |
| commit | 3af5f84c9d2b270c7458469cfe725f1a2ba219a9 (patch) | |
| tree | 24c278813fa1d6c6de0e369f1afe4a48a28b57b5 /output.c | |
| parent | ef943e75a54893c7e13c1f728b04efa663c2d690 (diff) | |
| download | php-git-3af5f84c9d2b270c7458469cfe725f1a2ba219a9.tar.gz | |
Kill compiler warnings.
Diffstat (limited to 'output.c')
| -rw-r--r-- | output.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -34,10 +34,10 @@ static char *ob_buffer; static uint ob_buffer_size; static uint ob_block_size; static uint ob_text_length; -void zend_ob_init(uint initial_size, uint block_size); -void zend_ob_destroy(); -void zend_ob_append(const char *text, uint text_length); -void zend_ob_prepend(const char *text, uint text_length); +static void zend_ob_init(uint initial_size, uint block_size); +static void zend_ob_destroy(); +static void zend_ob_append(const char *text, uint text_length); +static void zend_ob_prepend(const char *text, uint text_length); static inline void zend_ob_send(); |
