Add a GHC.Debug module, with debugLn :: [Char] -> IO ()
[ghc-prim.git] / cbits / debug.c
diff --git a/cbits/debug.c b/cbits/debug.c
new file mode 100644 (file)
index 0000000..ff34c5a
--- /dev/null
@@ -0,0 +1,6 @@
+
+#include <stdio.h>
+
+void debugLn(char *s) {
+    printf("%s\n", s);
+}