home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Collection (I)
/
TOOLS.iso
/
c01
/
1.img
/
INCLUDE.ZIP
/
_NULL.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-06-10
|
287 b
|
16 lines
/* _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