(retro_inline.h) Fix backwards compatibility with older mingw versions

This commit is contained in:
twinaphex 2016-03-04 01:43:09 +01:00
parent 5b11e290dd
commit 93de657952
1 changed files with 2 additions and 2 deletions

View File

@ -25,8 +25,8 @@
#ifndef INLINE
#if !defined(__cplusplus) && defined(_WIN32)
#define INLINE _inline
#if defined(_WIN32)
#define INLINE __inline
#elif defined(__STDC_VERSION__) && __STDC_VERSION__>=199901L
#define INLINE inline
#elif defined(__GNUC__)