diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-07-26 08:46:59 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-07-26 08:46:59 +0000 |
commit | e7d4b777a1667ccd6912115d43272c3735316eea (patch) | |
tree | 473a6fbda8b0c71c70986691c32a6383758f3536 /includes/RtsAPI.h | |
parent | ddb04482cbdda4f6637feac517c8e06870e56763 (diff) | |
download | haskell-e7d4b777a1667ccd6912115d43272c3735316eea.tar.gz |
change wired-in Haskell symbols to include the package name
Diffstat (limited to 'includes/RtsAPI.h')
-rw-r--r-- | includes/RtsAPI.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/RtsAPI.h b/includes/RtsAPI.h index 1b66789059..a3a41f025f 100644 --- a/includes/RtsAPI.h +++ b/includes/RtsAPI.h @@ -141,10 +141,10 @@ rts_getSchedStatus (Capability *cap); These are used by foreign export and foreign import "wrapper" stubs. ----------------------------------------------------------------------- */ -extern StgWord GHCziTopHandler_runIO_closure[]; -extern StgWord GHCziTopHandler_runNonIO_closure[]; -#define runIO_closure GHCziTopHandler_runIO_closure -#define runNonIO_closure GHCziTopHandler_runNonIO_closure +extern StgWord base_GHCziTopHandler_runIO_closure[]; +extern StgWord base_GHCziTopHandler_runNonIO_closure[]; +#define runIO_closure base_GHCziTopHandler_runIO_closure +#define runNonIO_closure base_GHCziTopHandler_runNonIO_closure /* ------------------------------------------------------------------------ */ |