summaryrefslogtreecommitdiff
path: root/includes/RtsAPI.h
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2010-07-14 18:47:15 +0000
committerIan Lynagh <igloo@earth.li>2010-07-14 18:47:15 +0000
commit75fea0db6f7d187aea994485a9b85c4d2b44fb83 (patch)
tree7fdb36780050e9f777ba1471f774aa307b04bbc5 /includes/RtsAPI.h
parent1c59af0bf4fbd699aafd71082e6ba6d373b59c23 (diff)
downloadhaskell-75fea0db6f7d187aea994485a9b85c4d2b44fb83.tar.gz
Change some TARGET checks to HOST checks
Diffstat (limited to 'includes/RtsAPI.h')
-rw-r--r--includes/RtsAPI.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/RtsAPI.h b/includes/RtsAPI.h
index 98bf7305fd..1444dbc3c5 100644
--- a/includes/RtsAPI.h
+++ b/includes/RtsAPI.h
@@ -169,7 +169,7 @@ rts_getSchedStatus (Capability *cap);
// Note that RtsAPI.h is also included by foreign export stubs in
// the base package itself.
//
-#if defined(mingw32_TARGET_OS) && defined(__PIC__) && !defined(COMPILING_BASE_PACKAGE)
+#if defined(mingw32_HOST_OS) && defined(__PIC__) && !defined(COMPILING_BASE_PACKAGE)
__declspec(dllimport) extern StgWord base_GHCziTopHandler_runIO_closure[];
__declspec(dllimport) extern StgWord base_GHCziTopHandler_runNonIO_closure[];
#else