1
0
镜像自地址 https://git.tukaani.org/xz.git 已同步 2025-08-06 03:36:34 +00:00

Windows: Add MSVC defines for inline and restrict keywords.

这个提交包含在:
Lasse Collin 2014-01-12 17:04:33 +02:00
父节点 a19d9e8575
当前提交 69fd4e1c93

查看文件

@ -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 //