1
0
mirror of synced 2026-01-31 14:03:02 +00:00
Files
MicroCoreLabs.Projects/XTMax/Tools/BCC31/INCLUDE/_NULL.H
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