diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-08-29 13:28:14 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-08-29 13:28:14 +0000 |
commit | 254528e32a007e508bb5967948ba02aa15c7e482 (patch) | |
tree | 9d65bdb603dddd016ec1159f39b881a851f2c7d6 /includes/rts/Utils.h | |
parent | 95ec750f94236c2ae127a147d7c9bebec036bcab (diff) | |
download | haskell-254528e32a007e508bb5967948ba02aa15c7e482.tar.gz |
Fix incorrectly hidden RTS symbols
Diffstat (limited to 'includes/rts/Utils.h')
-rw-r--r-- | includes/rts/Utils.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/includes/rts/Utils.h b/includes/rts/Utils.h new file mode 100644 index 0000000000..1258f6daa3 --- /dev/null +++ b/includes/rts/Utils.h @@ -0,0 +1,21 @@ +/* ----------------------------------------------------------------------------- + * + * (c) The GHC Team, 1998-2009 + * + * RTS external APIs. This file declares everything that the GHC RTS + * exposes externally. + * + * To understand the structure of the RTS headers, see the wiki: + * http://hackage.haskell.org/trac/ghc/wiki/Commentary/SourceTree/Includes + * + * ---------------------------------------------------------------------------*/ + +#ifndef RTS_UTILS_H +#define RTS_UTILS_H + +// Used in GHC (basicTypes/Unique.lhs, and Data.Unique in the base +// package. +HsInt genSymZh(void); +HsInt resetGenSymZh(void); + +#endif /* RTS_UTILS_H */ |