home *** CD-ROM | disk | FTP | other *** search
- /*-----------------------------------------------------------------------*
- * filename - stdfile.cpp
- * instantiations needed for C++ programs
- *-----------------------------------------------------------------------*/
-
- /*[]------------------------------------------------------------[]*/
- /*| |*/
- /*| Turbo C++ Run Time Library - Version 1.0 |*/
- /*| |*/
- /*| |*/
- /*| Copyright (c) 1990 by Borland International |*/
- /*| All Rights Reserved. |*/
- /*| |*/
- /*[]------------------------------------------------------------[]*/
-
- #include <stream.h>
-
- static filebuf _Cdecl outfileb(stdout); // make cout
- ostream _Cdecl cout(&outfileb);
-
- static filebuf _Cdecl infileb(stdin); // make cin and tie to cout
- istream _Cdecl cin(&infileb, 1, &cout);
-
- static filebuf _Cdecl errfileb(stderr); // make cerr
- ostream _Cdecl cerr(&errfileb);
-
- whitespace WS = { 0 }; // whitespace object
-