diff options
author | johnvg | 2003-10-22 15:25:20 +0000 |
---|---|---|
committer | johnvg | 2003-10-22 15:25:20 +0000 |
commit | 104b6ea9ed07e10955d1f6313d76c7b9d4a44243 (patch) | |
tree | ff7d373bf38c2b36842d94dd925ff052294bcea9 | |
parent | remove double include of compiledefines.h (diff) |
move include of compiledefines.h, define TARGET_API_MAC_CARBON if KARBON
is defined
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1414 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
-rw-r--r-- | backendC/CleanCompilerSources/path_cache.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backendC/CleanCompilerSources/path_cache.c b/backendC/CleanCompilerSources/path_cache.c index c9873d0..253ce80 100644 --- a/backendC/CleanCompilerSources/path_cache.c +++ b/backendC/CleanCompilerSources/path_cache.c @@ -1,10 +1,10 @@ -#if 0 -#define KARBON +#include "compiledefines.h" + +#ifdef KARBON #define TARGET_API_MAC_CARBON 1 #endif -#include "compiledefines.h" #include "types.t" #include "system.h" |