diff options
author | SVN Migration <svn@php.net> | 2002-06-16 10:58:55 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2002-06-16 10:58:55 +0000 |
commit | 2c2d0de09e522fe097bfcebfb758171eb6aa5270 (patch) | |
tree | 3049e2fcc7c0a7cb02222186415d522c4b350d23 /Zend/zend_istdiostream.h | |
parent | fcb692a75d32fbb2a31988df76b37ae5b7540086 (diff) | |
download | php-git-php5_5_0.tar.gz |
This commit was manufactured by cvs2svn to create tag 'php5_5_0'.php5_5_0
Diffstat (limited to 'Zend/zend_istdiostream.h')
-rw-r--r-- | Zend/zend_istdiostream.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Zend/zend_istdiostream.h b/Zend/zend_istdiostream.h deleted file mode 100644 index 00b65b3793..0000000000 --- a/Zend/zend_istdiostream.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef _ZEND_STDIOSTREAM -#define _ZEND_STDIOSTREAM - -#if defined(ZTS) && !defined(HAVE_CLASS_ISTDIOSTREAM) -class istdiostream : public istream -{ -private: - stdiobuf _file; -public: - istdiostream (FILE* __f) : istream(), _file(__f) { init(&_file); } - stdiobuf* rdbuf()/* const */ { return &_file; } -}; -#endif - -#endif |