home *** CD-ROM | disk | FTP | other *** search
- /*
- * standard header: Permits multiple compiler set-up. By changing
- * contents of ctcmpl.h, different compilers
- * can be used with little or no changes to the
- * code modules.
- *
- *
- * This program is the CONFIDENTIAL and PROPRIETARY property
- * of FairCom(R) Corporation. Any unauthorized use, reproduction or
- * transfer of this program is strictly prohibited.
- *
- * Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989 FairCom Corporation
- * (Subject to limited distribution and
- * restricted disclosure only.)
- * *** ALL RIGHTS RESERVED ***
- *
- * 4006 West Broadway
- * Columbia, MO 65203
- *
- *
- * c-tree(R) Version 4.3
- * Release C
- * February 7, 1989 17:30
- *
- */
-
- #include "ctcmpl.h" /* defines compiler environment */
- #include <stdio.h>
- #ifdef CT_ANSI
- #include <stddef.h>
- #endif
- #include "ctport.h" /* defines portable specifications */
-
- /*
- * NULL is used as an empty (zero) data pointer. You may wish to change
- * from a cast text pointer to a constant: e.g., #define NULL 0L. If you
- * choose to modify the #define for NULL, be sure that it is the same number
- * of bytes as a data pointer! In the 8086/80286/80386 family, a small data
- * model requires "#define NULL 0" and the large data model requires
- * "#define NULL 0L". Unlike previous versions of c-tree, NULL is now defined
- * in CTCMPL.H. (Actually, ct_NULL is defined in CTCMPL.H and used below to
- * define NULL.
- *
- * If you wish to use the compiler supplied value (if it exists) then
- * remove the comments from UNDEFSYSNULL below.
- *
- * Note that CTTEST now also checks the size of the NULL constant. If you have
- * any questions concerning your set up, compile and execute CTTEST.
- */
-
- /*
- * Remove these comments to keep a system defined NULL from being replaced
- * by the ct_NULL in CTCMPL.H. Otherwise, ct_NULL is assumed to exist,
- * and NULL is always replaced by ct_NULL.
- *
-
- #define UNDEFSYSNULL
-
- *
- */
-
- #ifndef UNDEFSYSNULL
-
- #ifdef NULL
- #undef NULL
- #endif
-
- #endif
-
- #ifndef NULL
- #define NULL (ct_NULL)
- #endif
-
- /* end of ctstdr.h */
-