SSBM Decomp
Loading...
Searching...
No Matches
stddef.h
Go to the documentation of this file.
1#ifndef __STDDEF_H__
2#define __STDDEF_H__
3
4typedef unsigned short wchar_t;
5
6typedef unsigned long size_t;
7
8typedef signed int intptr_t;
9typedef unsigned int uintptr_t;
10
11#define offsetof(type, member) ((size_t) &(((type*) 0)->member))
12
13#ifndef NULL
14#define NULL 0L
15#endif
16
17#endif
unsigned int uintptr_t
Definition stddef.h:9
unsigned short wchar_t
Definition stddef.h:4
signed int intptr_t
Definition stddef.h:8
unsigned long size_t
Definition stddef.h:6