oot/include/stddef.h

9 lines
98 B
C

#ifndef STDDEF_H
#define STDDEF_H
#define NULL ((void*)0)
typedef unsigned long size_t;
#endif