2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 10:37:41 -04:00

Fix some includes for non-MSVC.

This commit is contained in:
Darryl Pogue
2012-01-28 16:15:17 -08:00
parent 7c2cb067ad
commit 46c3c9c049
3 changed files with 4 additions and 2 deletions

View File

@ -48,8 +48,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// Internal Headers
// These are only ever included here :)
#include "hsWindows.h"
#include "hsTypes.h"
#include "hsWindows.h"
#include "hsUtils.h"
#endif

View File

@ -50,6 +50,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include <cstdlib>
#include <cstdio>
#include <cstddef>
#include <math.h>
/************************** Basic Macros *****************************/

View File

@ -46,7 +46,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#define _HSUTILS_H
#include "HeadSpin.h"
#include <ctype.h>
#include <cctype>
#include <cstring>
#include <stdarg.h>
int hsStrlen(const char src[]);