home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c063 / 1.ddi / INCLUDE.ZIP / _NULL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-18  |  291 b   |  16 lines

  1. /*  _null.h
  2.  
  3.     Definition of NULL.
  4.  
  5.     Copyright (c) 1987, 1991 by Borland International
  6.     All Rights Reserved.
  7. */
  8.  
  9. #ifndef NULL
  10. #  if defined(__TINY__) || defined(__SMALL__) || defined(__MEDIUM__)
  11. #      define NULL    0
  12. #  else
  13. #      define NULL    0L
  14. #  endif
  15. #endif
  16.