summaryrefslogtreecommitdiff
path: root/includes/rts/PrimFloat.h
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2009-08-29 13:28:14 +0000
committerSimon Marlow <marlowsd@gmail.com>2009-08-29 13:28:14 +0000
commit254528e32a007e508bb5967948ba02aa15c7e482 (patch)
tree9d65bdb603dddd016ec1159f39b881a851f2c7d6 /includes/rts/PrimFloat.h
parent95ec750f94236c2ae127a147d7c9bebec036bcab (diff)
downloadhaskell-254528e32a007e508bb5967948ba02aa15c7e482.tar.gz
Fix incorrectly hidden RTS symbols
Diffstat (limited to 'includes/rts/PrimFloat.h')
-rw-r--r--includes/rts/PrimFloat.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/includes/rts/PrimFloat.h b/includes/rts/PrimFloat.h
new file mode 100644
index 0000000000..7d137a7b6c
--- /dev/null
+++ b/includes/rts/PrimFloat.h
@@ -0,0 +1,18 @@
+/* -----------------------------------------------------------------------------
+ *
+ * (c) The GHC Team, 1998-2009
+ *
+ * Primitive floating-point operations
+ *
+ * To understand the structure of the RTS headers, see the wiki:
+ * http://hackage.haskell.org/trac/ghc/wiki/Commentary/SourceTree/Includes
+ *
+ * ---------------------------------------------------------------------------*/
+
+#ifndef RTS_PRIMFLOAT_H
+#define RTS_PRIMFLOAT_H
+
+StgDouble __int_encodeDouble (I_ j, I_ e);
+StgFloat __int_encodeFloat (I_ j, I_ e);
+
+#endif /* RTS_PRIMFLOAT_H */