#ifndef PLATFORM_H #define PLATFORM_H #if defined(__EMSCRIPTEN__) #include #include #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