project64/Source/Common/Platform.h

16 lines
264 B
C
Raw Normal View History

2016-01-04 06:49:33 +00:00
#pragma once
#ifndef _WIN32
#include <alloca.h>
#include <stdarg.h>
2021-02-28 23:02:40 +00:00
#define stricmp strcasecmp
2016-01-04 06:49:33 +00:00
#define _stricmp strcasecmp
#define _strnicmp strncasecmp
#define _snprintf snprintf
#define _isnan isnan
2016-01-04 06:49:33 +00:00
2022-10-03 08:04:42 +00:00
int _vscprintf(const char * format, va_list pargs);
2016-01-04 06:49:33 +00:00
#endif