diff options
author | Wez Furlong <wez@php.net> | 2002-08-25 10:10:23 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-08-25 10:10:23 +0000 |
commit | 27adb755855c004c80484b744f9551ac1cac19b6 (patch) | |
tree | 4077d5b7a6485f6aa168ce21f4ba1e8d74bde9e6 /main/php_streams.h | |
parent | dd0d03885d4fc5be5da522cbc76a77da3dd44be3 (diff) | |
download | php-git-27adb755855c004c80484b744f9551ac1cac19b6.tar.gz |
Remove php_stream_error as discussed with Rasmus.
Unify error messages for ext/ftp. (which was using php_stream_error).
Diffstat (limited to 'main/php_streams.h')
-rwxr-xr-x | main/php_streams.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/main/php_streams.h b/main/php_streams.h index 867048f4a8..94bc0c363a 100755 --- a/main/php_streams.h +++ b/main/php_streams.h @@ -375,10 +375,6 @@ PHPAPI size_t _php_stream_copy_to_mem(php_stream *src, char **buf, size_t maxlen PHPAPI size_t _php_stream_passthru(php_stream * src STREAMS_DC TSRMLS_DC); #define php_stream_passthru(stream) _php_stream_passthru((stream) STREAMS_CC TSRMLS_CC) - -/* maybe implement someday */ -#define php_stream_error(stream) (0) - /* operations for a stdio FILE; use the php_stream_fopen_XXX funcs below */ PHPAPI extern php_stream_ops php_stream_stdio_ops; /* like fopen, but returns a stream */ |