slcc/fakelibc/stddef.h

14 lines
202 B
C
Raw Permalink Normal View History

#ifndef _FAKELIBC_STDDEF_H
#define _FAKELIBC_STDDEF_H
//#ifndef _FAKELIBC_STDLIB_H
typedef long size_t;
//#endif
#ifndef NULL
#define NULL ((void*) 0)
#endif
/* From ifndef at top of file: */
#endif