2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-17 08:41:35 +00:00
xNBA/src/include/stddef.h
2005-04-08 15:01:17 +00:00

14 lines
213 B
C

#ifndef STDDEF_H
#define STDDEF_H
/* for size_t */
#include "stdint.h"
#undef NULL
#define NULL ((void *)0)
#undef offsetof
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
#endif /* STDDEF_H */