home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / _null.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  372b  |  25 lines

  1. /*  _null.h
  2.  
  3.     Definition of NULL.
  4.  
  5. */
  6.  
  7. /*
  8.  *      C/C++ Run Time Library - Version 10.0
  9.  *
  10.  *      Copyright (c) 1987, 2000 by Inprise Corporation
  11.  *      All Rights Reserved.
  12.  *
  13.  */
  14.  
  15. /* $Revision:   9.1  $ */
  16.  
  17. #ifndef NULL
  18. #  if defined(__cplusplus) || defined(_Windows)
  19. #    define NULL 0
  20. #  else
  21. #    define NULL ((void *)0)
  22. #  endif
  23. #endif
  24.  
  25.