mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-22 18:32:42 +01:00
97e738ba36
- re-arrange includes
19 lines
299 B
C
19 lines
299 B
C
#ifndef PLATFORM_H
|
|
#define PLATFORM_H
|
|
|
|
#if defined(__EMSCRIPTEN__)
|
|
#include <emscripten/emscripten.h>
|
|
#include <emscripten/html5.h>
|
|
#endif
|
|
|
|
#include "psyx_compat.h"
|
|
|
|
#ifndef PSX
|
|
#include "../utils/fs.h"
|
|
#endif
|
|
|
|
#ifdef __GNUC__
|
|
#define _stricmp(s1, s2) strcasecmp(s1, s2)
|
|
#endif
|
|
|
|
#endif // PLATFORM_H
|