diff options
author | Zeev Suraski <zeev@php.net> | 2005-12-18 15:38:08 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2005-12-18 15:38:08 +0000 |
commit | 59dc41f761c1a3ebd8944bb774a195b8e1d509cb (patch) | |
tree | 09cfd0610dd3b49242c0b5db17c2632b8c639ae5 /main/streams/userspace.c | |
parent | 2b413f7af263ecb911e0c12e75baf66e141a8399 (diff) | |
download | php-git-59dc41f761c1a3ebd8944bb774a195b8e1d509cb.tar.gz |
Fix prototype
Diffstat (limited to 'main/streams/userspace.c')
-rw-r--r-- | main/streams/userspace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/streams/userspace.c b/main/streams/userspace.c index 9493027220..26ffb19d1d 100644 --- a/main/streams/userspace.c +++ b/main/streams/userspace.c @@ -437,7 +437,7 @@ PHP_FUNCTION(stream_wrapper_register) } /* }}} */ -/* {{{ bool stream_wrapper_unregister(string protocol) +/* {{{ proto bool stream_wrapper_unregister(string protocol) Unregister a wrapper for the life of the current request. */ PHP_FUNCTION(stream_wrapper_unregister) { @@ -458,7 +458,7 @@ PHP_FUNCTION(stream_wrapper_unregister) } /* }}} */ -/* {{{ bool stream_wrapper_restore(string protocol) +/* {{{ proto bool stream_wrapper_restore(string protocol) Restore the original protocol handler, overriding if necessary */ PHP_FUNCTION(stream_wrapper_restore) { |