X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=pico%2Fpico_int.h;h=e7f530fe85b4c901669dcaa197788ad783aa4f4c;hb=88d98ee0e6f1c97a89919a957f533bf79ecc5fdf;hp=09fb64585c64af4146fc6b6bdb4f93179ba49f63;hpb=bee555aeac5dae1cd0567606eb6d42cd1ca0ddc4;p=picodrive.git diff --git a/pico/pico_int.h b/pico/pico_int.h index 09fb645..e7f530f 100644 --- a/pico/pico_int.h +++ b/pico/pico_int.h @@ -32,6 +32,11 @@ extern "C" { #endif +#ifdef _MSC_VER +#define snprintf _snprintf +#define strcasecmp _stricmp +#define strncasecmp _strnicmp +#endif // ----------------------- 68000 CPU ----------------------- #ifdef EMU_C68K @@ -907,7 +912,7 @@ void REGPARM(3) sh2_peripheral_write32(unsigned int a, unsigned int d, SH2 *sh2) #endif /* avoid dependency on newer glibc */ -static __inline int isspace_(int c) +static INLINE int isspace_(int c) { return (0x09 <= c && c <= 0x0d) || c == ' '; }