mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-05 10:48:03 -04:00
24 lines
498 B
Plaintext
24 lines
498 B
Plaintext
$NetBSD: patch-dptutil_flash_cpp,v 1.1 2011/05/22 19:11:42 dholland Exp $
|
|
|
|
Build fix for semi-modern C++.
|
|
|
|
--- dptutil/flash.cpp.orig 2002-08-13 15:02:47.000000000 +0000
|
|
+++ dptutil/flash.cpp
|
|
@@ -31,12 +31,10 @@
|
|
|
|
#include <stdio.h>
|
|
#include <ctype.h>
|
|
-#include <fstream.h>
|
|
-#if defined _DPT_WIN_NT
|
|
-#include <strstrea.h>
|
|
-#else
|
|
-#include <strstream.h>
|
|
-#endif
|
|
+#include <fstream>
|
|
+//#include <strstream>
|
|
+using std::fstream;
|
|
+using std::ios;
|
|
|
|
extern char* EventStrings[];
|
|
/*** CONSTANTS ***/
|