Date: Sat, 12 Dec 1998 01:45:01 -0500 (EST) From: Nathaniel Johnson To: djgpp AT delorie DOT com Subject: gxx error In-Reply-To: <199812120513.AAA07934@zeus.pc.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com hello i am using djgpp v2.02 and i am getting this error when i try to compile a simple c++ program error: In file included from swap.cc:1: e:/djgpp/lang/cxx/iostream.h:31: streambuf.h: No such file or directory (ENOENT) swap.cc: #include template T min(T a, T b) { if (a < b) return a; else return b; } void main() { int x = 1, y = 2; cout << min(x,y) << endl; float c = 13.23, d = 2.231; cout << min(x,y) << endl; } thanks for any help nate