1
0
mirror of synced 2026-01-19 17:48:15 +00:00
2024-10-28 18:32:29 -07:00

16 lines
272 B
C

/* _null.h
Definition of NULL.
Copyright (c) 1987, 1992 by Borland International
All Rights Reserved.
*/
#ifndef NULL
# if defined(__TINY__) || defined(__SMALL__) || defined(__MEDIUM__)
# define NULL 0
# else
# define NULL 0L
# endif
#endif