freebsd-ports/devel/hp48xgcc/files/patch-class+clld.cc
Alexey Dokuchaev f03bedcae2 Add HP48-xgcc 1.0.2, GNU C cross-compiler for HP48 calculators.
Now one step closer porting BSD on my HP48GX.  ;-)
2006-02-20 13:18:26 +00:00

29 lines
1 KiB
C++

--- class/clld.cc 3 Nov 2004 06:57:51 -0000 1.1
+++ class/clld.cc 4 Nov 2004 10:58:04 -0000 1.2
@@ -130,7 +130,7 @@
BIstream f;
f.open(name, ios::in | ios::binary);
#else
- ifstream f(name, ios::in | ios::bin);
+ ifstream f(name, ios::in | ios::binary);
#endif
if (f.fail()) {
if (!library)
@@ -332,7 +332,7 @@
BOstream shl_stream;
shl_stream.open ( shl_name, ios::out | ios::bin | ios::trunc );
#else
- ofstream shl_stream(shl_name, ios::out | ios::bin | ios::trunc );
+ ofstream shl_stream(shl_name, ios::out | ios::binary | ios::trunc );
#endif
if (shl_stream.fail()) {
cerr << "ERROR: unable to open file '"+shl_name+"' for writing\n";
@@ -528,7 +528,7 @@
BOstream dst_stream;
dst_stream.open (bin_name, ios::out | ios::bin | ios::trunc );
#else
- ofstream dst_stream(bin_name, ios::out | ios::bin | ios::trunc );
+ ofstream dst_stream(bin_name, ios::out | ios::binary | ios::trunc );
#endif
if (dst_stream.fail()) {
cerr << "ERROR: unable to open file '"+bin_name+"' for writing\n";