mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-04 21:15:53 +00:00
21 lines
257 B
C
21 lines
257 B
C
#ifndef _STDDEF_H_
|
|
#define _STDDEF_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define offsetof(type, member) ((size_t) & (((type*)0)->member))
|
|
|
|
typedef __typeof__(sizeof(0)) size_t;
|
|
|
|
#ifndef NULL
|
|
#define NULL 0L
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|