These days include standard C++ header files without the .h on the end
authorPeter Howkins <flibble@users.sourceforge.net>
Mon, 12 Mar 2012 16:43:22 +0000 (16:43 +0000)
committerPeter Howkins <flibble@users.sourceforge.net>
Mon, 12 Mar 2012 16:43:22 +0000 (16:43 +0000)
cde/programs/dtsearchpath/dtsp/SearchPath.h
cde/programs/dtsearchpath/libCliSrv/cstring.h

index a79c67d1c7d22c5a99cfb76e94489b81087bcd0e..e6d2e797d627e8e442524303879514e9169602a5 100644 (file)
 
 #include "Environ.h"
 #include "cstring.h"
+#if defined(linux)
+#include <iostream>
+#else
 #include <iostream.h>
+#endif
 #include <stdio.h>
 
 class SearchPath {
index fec4685e5413b7d6f1c9a3cb92c997b869e883f4..abe0ee9bdbe7d564320f150ac52d739a42d91927 100644 (file)
 #ifndef _CSTRING_H_
 #define _CSTRING_H_
 
+#if defined(linux)
+#include <iostream>
+#else
 #include <iostream.h>
+#endif
 #include <string.h>
 
 class CString {