diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-03-27 03:00:54 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-03-27 03:00:54 +0000 |
commit | d0a1905720f0fcec0487a392469ac6784e6a266e (patch) | |
tree | 85eba5204fb18082299f999deb70bdb6a6f15401 /contrib/libg++/libio/builtinbuf.cc | |
parent | 69ffc00f5da62b5b9679474845e8fca0fbf534a7 (diff) |
Notes
Diffstat (limited to 'contrib/libg++/libio/builtinbuf.cc')
-rw-r--r-- | contrib/libg++/libio/builtinbuf.cc | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/contrib/libg++/libio/builtinbuf.cc b/contrib/libg++/libio/builtinbuf.cc deleted file mode 100644 index 05e65a5c371b..000000000000 --- a/contrib/libg++/libio/builtinbuf.cc +++ /dev/null @@ -1,78 +0,0 @@ -/* -Copyright (C) 1993 Free Software Foundation - -This file is part of the GNU IO Library. This library is free -software; you can redistribute it and/or modify it under the -terms of the GNU General Public License as published by the -Free Software Foundation; either version 2, or (at your option) -any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this library; see the file COPYING. If not, write to the Free -Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -As a special exception, if you link this library with files -compiled with a GNU compiler to produce an executable, this does not cause -the resulting executable to be covered by the GNU General Public License. -This exception does not however invalidate any other reasons why -the executable file might be covered by the GNU General Public License. */ - -#ifdef __GNUC__ -#pragma implementation -#endif -#define _STREAM_COMPAT -#include "builtinbuf.h" -#include "iostreamP.h" -#if !_IO_UNIFIED_JUMPTABLES -int builtinbuf::overflow(int ch) { return _IO_OVERFLOW (this, ch); } - -int builtinbuf::underflow() { return _IO_UNDERFLOW (this); } - -streamsize builtinbuf::xsgetn(char* buf, streamsize n) -{ return _IO_XSGETN (this, buf, n); } - -streamsize builtinbuf::xsputn(const char* buf, streamsize n) -{ return _IO_XSPUTN (this, buf, n); } - -int builtinbuf::doallocate() { return _IO_DOALLOCATE (this); } - -builtinbuf::~builtinbuf() { _IO_FINISH (this); } - -int builtinbuf::sync() { return _IO_SYNC (this); } - -streambuf* builtinbuf::setbuf(char *buf, int n) -{ return (streambuf*)_IO_SETBUF (this, buf, n); } - -streampos builtinbuf::seekoff(streamoff off, _seek_dir dir, int mode) -{ - return _IO_SEEKOFF (this, off, dir, mode); -} - -streampos builtinbuf::seekpos(streampos pos, int mode) -{ - return _IO_SEEKPOS (this, pos, mode); -} - -int builtinbuf::pbackfail(int c) -{ return _IO_PBACKFAIL (this, c); } - -streamsize builtinbuf::sys_read(char* buf, streamsize size) -{ return _IO_SYSREAD (this, buf, size); } - -streampos builtinbuf::sys_seek(streamoff off, _seek_dir dir) -{ return _IO_SYSSEEK (this, off, dir); } - -streamsize builtinbuf::sys_write(const char* buf, streamsize size) -{ return _IO_SYSWRITE (this, buf, size); } - -int builtinbuf::sys_stat(void* buf) // Actually, a (struct stat*) -{ return _IO_SYSSTAT (this, buf); } - -int builtinbuf::sys_close() -{ return _IO_SYSCLOSE (this); } -#endif |