blob: 0ea7f46e901d96bb96496e82eded353eb688eb4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$NetBSD: patch-ab,v 1.1 2003/10/07 18:20:16 jschauma Exp $
--- delcher.h.orig 2003-10-07 14:07:00.000000000 -0400
+++ delcher.h 2003-10-07 14:07:35.000000000 -0400
@@ -18,9 +18,9 @@
#include <stdio.h>
#include <stdlib.h>
-#include <iostream.h>
-#include <iomanip.h>
-#include <fstream.h>
+#include <iostream>
+#include <iomanip>
+#include <fstream>
#include <math.h>
#include <string.h>
#include <ctype.h>
@@ -31,6 +31,7 @@
#include <errno.h>
#include <unistd.h>
+using namespace std;
#define TRUE 1
#define FALSE 0
|