diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/sysdefs.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common/sysdefs.h b/src/common/sysdefs.h index 5ea6bdae..e056ca4a 100644 --- a/src/common/sysdefs.h +++ b/src/common/sysdefs.h @@ -165,6 +165,16 @@ typedef unsigned char _Bool; # include <memory.h> #endif +// As of MSVC 2013, inline and restrict are supported with +// non-standard keywords. +#if defined(_WIN32) && defined(_MSC_VER) +# ifndef inline +# define inline __inline +# endif +# ifndef restrict +# define restrict __restrict +# endif +#endif //////////// // Macros // |