blob: f55e978734bc7764197887c5c830bdf6df1a708b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* ostream.h and istream.h now separately includable */
#ifndef _stream_h
#ifdef __GNUG__
#pragma once
#pragma interface
#endif
#define _stream_h 1
#include <ostream.h>
#include <istream.h>
#endif
|