mirror of
https://github.com/FWGS/hlsdk-xash3d
synced 2024-11-22 09:57:21 +01:00
Try to fix clang build.
This commit is contained in:
parent
93d1ed0294
commit
cf6647e07c
@ -62,6 +62,7 @@ typedef int BOOL;
|
||||
// Misc C-runtime library headers
|
||||
#include "stdio.h"
|
||||
#include "stdlib.h"
|
||||
#include "stddef.h"
|
||||
#include "math.h"
|
||||
|
||||
#if defined(__LP64__) || defined(__LLP64__) || defined(_WIN64) || (defined(__x86_64__) && !defined(__ILP32__) ) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__)
|
||||
|
@ -355,7 +355,7 @@ typedef enum _fieldtypes
|
||||
FIELD_TYPECOUNT // MUST BE LAST
|
||||
} FIELDTYPE;
|
||||
|
||||
#if !defined(offsetof) && !defined(GNUC)
|
||||
#if !defined(offsetof) && !defined(__GNUC__)
|
||||
#define offsetof(s,m) (size_t)&(((s *)0)->m)
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user