mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-16 16:16:58 -04:00
24 lines
464 B
Plaintext
24 lines
464 B
Plaintext
$NetBSD: patch-dpteng_debug_h,v 1.1 2011/05/22 19:11:42 dholland Exp $
|
|
|
|
Build fix for semi-modern C++.
|
|
|
|
--- dpteng/debug.h~ 2002-08-13 15:02:21.000000000 +0000
|
|
+++ dpteng/debug.h
|
|
@@ -4,11 +4,11 @@
|
|
#include "osd_defs.h"
|
|
|
|
#ifndef _DPT_NETWARE
|
|
-#include <fstream.h>
|
|
-#include <iostream.h>
|
|
-#include <iomanip.h>
|
|
-#include <string.h>
|
|
-#include <stdio.h>
|
|
+#include <fstream>
|
|
+#include <iostream>
|
|
+#include <iomanip>
|
|
+#include <cstring>
|
|
+#include <cstdio>
|
|
#endif
|
|
|
|
|