minix/minix/include/sys/null.h
2025-06-04 10:02:37 -07:00

13 lines
159 B
C

#ifndef _SYS_NULL_H
#define _SYS_NULL_H
#ifndef NULL
#ifdef __cplusplus
#define NULL 0
#else
#define NULL ((void *)0)
#endif
#endif
#endif /* _SYS_NULL_H */