mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
b87ad4546b
PR: 58876 Submitted by: Ports Fury
27 lines
502 B
C++
27 lines
502 B
C++
--- cmn/utils.cpp.orig Wed Mar 19 10:05:12 2003
|
|
+++ cmn/utils.cpp Sat Oct 25 21:45:15 2003
|
|
@@ -30,16 +30,17 @@
|
|
|
|
// Include Files
|
|
#include "stdafx.h"
|
|
-#include <iostream.h>
|
|
-#include <limits.h>
|
|
-#include <string.h>
|
|
-#include <ctype.h>
|
|
-#include <fstream.h>
|
|
+#include <iostream>
|
|
+#include <climits>
|
|
+#include <cstring>
|
|
+#include <cctype>
|
|
+#include <fstream>
|
|
+using namespace std;
|
|
#if WIN32
|
|
#include <strstrea.h>
|
|
#endif
|
|
#if X11
|
|
-#include <strstream.h>
|
|
+#include <strstream>
|
|
#endif
|
|
|
|
#ifdef WIN32
|