From a3cf1ab8f6d384f35530174d45100dc3994835ba Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sat, 1 Mar 2003 15:20:42 +0000 Subject: [PATCH] Folding fixes --- main/streams/memory.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/main/streams/memory.c b/main/streams/memory.c index 3446a9906d..45a6ef1acf 100644 --- a/main/streams/memory.c +++ b/main/streams/memory.c @@ -423,8 +423,9 @@ php_stream_ops php_stream_temp_ops = { NULL /* set_option */ }; +/* }}} */ -/* {{{ */ +/* {{{ _php_stream_temp_create */ PHPAPI php_stream *_php_stream_temp_create(int mode, size_t max_memory_usage STREAMS_DC TSRMLS_DC) { php_stream_temp_data *self; @@ -442,7 +443,7 @@ PHPAPI php_stream *_php_stream_temp_create(int mode, size_t max_memory_usage STR /* }}} */ -/* {{{ */ +/* {{{ _php_stream_temp_open */ PHPAPI php_stream *_php_stream_temp_open(int mode, size_t max_memory_usage, char *buf, size_t length STREAMS_DC TSRMLS_DC) { php_stream *stream; @@ -461,6 +462,7 @@ PHPAPI php_stream *_php_stream_temp_open(int mode, size_t max_memory_usage, char } /* }}} */ + /* * Local variables: * tab-width: 4 -- 2.50.1