mirror of
https://github.com/xcat2/xNBA.git
synced 2026-04-01 02:53:28 +00:00
Some newer versions of gcc (observed with a patched gcc 4.5.1) seem to treat our offsetof() implementation as not being a compile-time constant. Fix by using __builtin_offsetof() when available. (As with the original offsetof() macro, this code is copied from the Linux kernel's stddef.h.) Reported-by: Arkadiusz Miskiewicz <arekm@maven.pl> Signed-off-by: Michael Brown <mcb30@ipxe.org>
31 lines
721 B
C
31 lines
721 B
C
#ifndef STDDEF_H
|
|
#define STDDEF_H
|
|
|
|
FILE_LICENCE ( GPL2_ONLY );
|
|
|
|
/* for size_t */
|
|
#include <stdint.h>
|
|
|
|
#undef NULL
|
|
#define NULL ((void *)0)
|
|
|
|
#undef offsetof
|
|
#ifdef __compiler_offsetof
|
|
#define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
|
|
#else
|
|
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
|
#endif
|
|
|
|
#undef container_of
|
|
#define container_of(ptr, type, member) ({ \
|
|
const typeof( ((type *)0)->member ) *__mptr = (ptr); \
|
|
(type *)( (char *)__mptr - offsetof(type,member) );})
|
|
|
|
/* __WCHAR_TYPE__ is defined by gcc and will change if -fshort-wchar is used */
|
|
#ifndef __WCHAR_TYPE__
|
|
#define __WCHAR_TYPE__ long int
|
|
#endif
|
|
typedef __WCHAR_TYPE__ wchar_t;
|
|
|
|
#endif /* STDDEF_H */
|