pinebuds/utils/libc/inc/stddef.h

13 lines
227 B
C

#ifndef STDDEF_H
#define STDDEF_H
#undef NULL
#ifndef __cplusplus
#define NULL ((void *)0)
#else /* C++ */
#define NULL 0
#endif /* C++ */
#endif