8a8b31d05c
This port did not build with gcc 3.3.1. I also fixed a possible buffer overflow (they used gets() to read from stdin). Please review the patch file ``patch-cftypes.cpp'' with extra care, since I am not sure whether this makes sense (2 positions in the file, marked with ``TODO'' - thanks. Also added some lines in cftypes.cpp to overcome the absence of values.h on -current. PR: ports/55767 Submitted by: Simon Barner <barner@in.tum.de>
12 lines
290 B
C++
12 lines
290 B
C++
--- bstring.h.orig Tue Aug 19 18:15:26 2003
|
|
+++ bstring.h Tue Aug 19 18:16:08 2003
|
|
@@ -28,6 +28,9 @@
|
|
#include <fstream.h>
|
|
#include "dos_comp.h"
|
|
|
|
+using std::ostream;
|
|
+using std::istream;
|
|
+
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
class b_string
|