diff options
author | simonmar <unknown> | 2005-03-04 12:01:11 +0000 |
---|---|---|
committer | simonmar <unknown> | 2005-03-04 12:01:11 +0000 |
commit | 7f5ad47f93198f4e0548c4ca5a7cb37f3dcbc060 (patch) | |
tree | b42f4791cf67071fd1d2ad2f0d68bcf3717bdd82 | |
parent | d58bc4068f579d7d6de0e41007a7f23eacdf66bc (diff) | |
download | haskell-7f5ad47f93198f4e0548c4ca5a7cb37f3dcbc060.tar.gz |
[project @ 2005-03-04 12:01:11 by simonmar]
include ghcautoconf.h rather than ghcconfig.h, the reason being that
this file is included form the compiler, and we don't want the
platform defines from ghcplatform.h.
-rw-r--r-- | ghc/includes/MachDeps.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/includes/MachDeps.h b/ghc/includes/MachDeps.h index 39ce757917..abe4405d5e 100644 --- a/ghc/includes/MachDeps.h +++ b/ghc/includes/MachDeps.h @@ -13,7 +13,7 @@ #define MACHDEPS_H /* Sizes of C types come from here... */ -#include "ghcconfig.h" +#include "ghcautoconf.h" /* Sizes of Haskell types follow. These sizes correspond to: * - the number of bytes in the primitive type (eg. Int#) |