Your IP : 216.73.216.40


Current Path : /var/www/html/prashantkr/TurboC/TCWIN45/INCLUDE/
Upload File :
Current File : /var/www/html/prashantkr/TurboC/TCWIN45/INCLUDE/_NULL.H

/*  _null.h

    Definition of NULL.

*/

/*
 *      C/C++ Run Time Library - Version 6.5
 *
 *      Copyright (c) 1987, 1994 by Borland International
 *      All Rights Reserved.
 *
 */

#ifndef NULL
#  if !defined(__FLAT__)
#    if defined(__TINY__) || defined(__SMALL__) || defined(__MEDIUM__)
#      define NULL    0
#    else
#      define NULL    0L
#    endif
#  else
#    if defined(__cplusplus) || defined(_Windows)
#      define NULL 0
#    else
#      define NULL ((void *)0)
#    endif
#  endif
#endif