home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Compilers⁄Interps
/
Harvest C
/
Source Code
/
conditcomp.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-02-15
|
373 b
|
27 lines
|
[
TEXT/ALFA
]
/*
* Harvest C
*
* Copyright 1991 Eric W. Sink All rights reserved.
*
* This file manages the define symbols which handle conditional compilation.
*
*/
#ifndef CONDITCOMP
#define CONDITCOMP
/* Change the #defines here */
#define NDEBUG 1
#ifdef OLDMEM
#define P__H *
#else
#define P__H
#endif
#define Via(x) (P__H(x))
typedef char P__H*EString_t;
#endif