mirror of https://github.com/PrimeDecomp/prime.git
21 lines
248 B
C
21 lines
248 B
C
|
#ifndef _STDDEF_H_
|
||
|
#define _STDDEF_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#define offsetof(type, member) ((size_t) & (((type*)0)->member))
|
||
|
|
||
|
typedef unsigned int size_t;
|
||
|
|
||
|
#ifndef NULL
|
||
|
#define NULL 0L
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|