home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c004 / 2.ddi / CTSTDR.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-04-18  |  2.1 KB  |  75 lines

  1. /*
  2.  *    standard header:    Permits multiple compiler set-up. By changing
  3.  *                contents of ctcmpl.h, different compilers 
  4.  *                can be used with little or no changes to the
  5.  *                code modules.
  6.  *                
  7.  *
  8.  *    This program is the CONFIDENTIAL and PROPRIETARY property 
  9.  *    of FairCom(R) Corporation. Any unauthorized use, reproduction or
  10.  *    transfer of this program is strictly prohibited.
  11.  *
  12.  *    Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989 FairCom Corporation
  13.  *    (Subject to limited distribution and
  14.  *     restricted disclosure only.)
  15.  *    *** ALL RIGHTS RESERVED ***
  16.  *
  17.  *    4006 West Broadway
  18.  *    Columbia, MO 65203
  19.  *
  20.  *
  21.  *    c-tree(R)    Version 4.3
  22.  *            Release C
  23.  *            February 7, 1989 17:30
  24.  *
  25.  */
  26.  
  27. #include "ctcmpl.h"    /* defines compiler environment     */
  28. #include <stdio.h>
  29. #ifdef CT_ANSI
  30. #include <stddef.h>
  31. #endif
  32. #include "ctport.h"    /* defines portable specifications     */
  33.  
  34. /*
  35.  * NULL is used as an empty (zero) data pointer.  You may wish to change
  36.  * from a cast text pointer to a constant: e.g., #define NULL 0L.  If you
  37.  * choose to modify the #define for NULL, be sure that it is the same number
  38.  * of bytes as a data pointer!  In the 8086/80286/80386 family, a small data
  39.  * model requires "#define NULL 0" and the large data model requires
  40.  * "#define NULL 0L".  Unlike previous versions of c-tree, NULL is now defined
  41.  * in CTCMPL.H. (Actually, ct_NULL is defined in CTCMPL.H and used below to
  42.  * define NULL.
  43.  *
  44.  * If you wish to use the compiler supplied value (if it exists) then
  45.  * remove the comments from UNDEFSYSNULL below.
  46.  *
  47.  * Note that CTTEST now also checks the size of the NULL constant. If you have
  48.  * any questions concerning your set up, compile and execute CTTEST.
  49.  */
  50.  
  51. /*
  52.  * Remove these comments to keep a system defined NULL from being replaced
  53.  * by the ct_NULL in CTCMPL.H.  Otherwise, ct_NULL is assumed to exist,
  54.  * and NULL is always replaced by ct_NULL.
  55.  *
  56.  
  57. #define UNDEFSYSNULL
  58.  
  59.  *
  60.  */
  61.  
  62. #ifndef UNDEFSYSNULL
  63.  
  64. #ifdef NULL
  65. #undef NULL
  66. #endif
  67.  
  68. #endif
  69.  
  70. #ifndef NULL
  71. #define NULL    (ct_NULL)
  72. #endif
  73.  
  74. /* end of ctstdr.h */
  75.