mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-26 12:22:35 +01:00
14 lines
194 B
C
14 lines
194 B
C
#ifndef PLATFORM_H
|
|
#define PLATFORM_H
|
|
|
|
#include "STRINGS.H"
|
|
|
|
#ifndef PSX
|
|
#include "../utils/fs.h"
|
|
#endif
|
|
|
|
#ifdef __GNUC__
|
|
#define _stricmp(s1, s2) strcasecmp(s1, s2)
|
|
#endif
|
|
|
|
#endif // PLATFORM_H
|