Fix incorrectly hidden RTS symbols
[ghc-hetmet.git] / includes / rts / PrimFloat.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 1998-2009
4  *
5  * Primitive floating-point operations
6  *
7  * To understand the structure of the RTS headers, see the wiki:
8  *   http://hackage.haskell.org/trac/ghc/wiki/Commentary/SourceTree/Includes
9  *
10  * ---------------------------------------------------------------------------*/
11
12 #ifndef RTS_PRIMFLOAT_H
13 #define RTS_PRIMFLOAT_H
14
15 StgDouble __int_encodeDouble (I_ j, I_ e);
16 StgFloat  __int_encodeFloat (I_ j, I_ e);
17
18 #endif /* RTS_PRIMFLOAT_H */