diff options
author | SVN Migration <svn@php.net> | 2002-11-13 16:30:51 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2002-11-13 16:30:51 +0000 |
commit | e6659bd69fafc7461dd704b31e3e3894d8b6ba67 (patch) | |
tree | b21af957944942eaa34cc05be5cfc53308d5f9dc /Zend/zend_istdiostream.h | |
parent | 244d5d1c113980c50800015ee2b9e04ce719bc60 (diff) | |
download | php-git-e6659bd69fafc7461dd704b31e3e3894d8b6ba67.tar.gz |
This commit was manufactured by cvs2svn to create branch 'PHP_4_3'.
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 |