XenevaOS
Loading...
Searching...
No Matches
stddef.h
Go to the documentation of this file.
1
30#ifndef _STDDEF_H
31#define _STDDEF_H
32
33#ifndef NULL
34#define NULL 0
35#endif
36
37#include <stdint.h>
38
39typedef int ptrdiff_t;
40
41typedef int ssize_t;
42typedef unsigned wint_t;
43
44#if !defined(__cplusplus)
45typedef unsigned wchar_t;
46#endif
47
48#endif
49
unsigned wchar_t
Definition stddef.h:45
unsigned wint_t
Definition stddef.h:42
int ssize_t
Definition stddef.h:41
int ptrdiff_t
Definition stddef.h:39