Don't redefine pseudo-ANSI C keywords on Windows
This commit is contained in:
parent
d78d37a597
commit
b7bc071557
1 changed files with 3 additions and 1 deletions
|
@ -86,7 +86,9 @@
|
|||
#define __CONCAT(x,y) x/**/y
|
||||
#define __STRING(x) "x"
|
||||
|
||||
#if !defined(__GNUC__) && !defined(lint)
|
||||
#if defined(_MSC_VER)
|
||||
#include <windows.h>
|
||||
#elif !defined(__GNUC__) && !defined(lint)
|
||||
#define __const /* delete pseudo-ANSI C keywords */
|
||||
#define __inline
|
||||
#define __signed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue