1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

These days include standard C++ header files without the .h on the end

This commit is contained in:
Peter Howkins 2012-03-12 16:43:22 +00:00
parent ca8ede6c1f
commit 7d770cff75
2 changed files with 8 additions and 0 deletions

View file

@ -34,7 +34,11 @@
#include "Environ.h"
#include "cstring.h"
#if defined(linux)
#include <iostream>
#else
#include <iostream.h>
#endif
#include <stdio.h>
class SearchPath {

View file

@ -32,7 +32,11 @@
#ifndef _CSTRING_H_
#define _CSTRING_H_
#if defined(linux)
#include <iostream>
#else
#include <iostream.h>
#endif
#include <string.h>
class CString {