pinebuds/utils/libc/inc/stddef.h
2022-08-15 17:20:27 +08:00

12 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