home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / borhead.zip / _NULL.H < prev    next >
C/C++ Source or Header  |  1994-11-09  |  334b  |  23 lines

  1. /*  _null.h
  2.  
  3.     Definition of NULL.
  4.  
  5. */
  6.  
  7. /*
  8.  *      C/C++ Run Time Library - Version 1.5
  9.  *
  10.  *      Copyright (c) 1987, 1994 by Borland International
  11.  *      All Rights Reserved.
  12.  *
  13.  */
  14.  
  15. #ifndef NULL
  16. #    if defined(__cplusplus) 
  17. #      define NULL 0
  18. #    else
  19. #      define NULL ((void *)0)
  20. #    endif
  21. #endif
  22.  
  23.