summaryrefslogtreecommitdiff
path: root/libraries/ghc-prim/cbits/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/ghc-prim/cbits/debug.c')
-rw-r--r--libraries/ghc-prim/cbits/debug.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libraries/ghc-prim/cbits/debug.c b/libraries/ghc-prim/cbits/debug.c
new file mode 100644
index 0000000000..ff34c5a90d
--- /dev/null
+++ b/libraries/ghc-prim/cbits/debug.c
@@ -0,0 +1,6 @@
+
+#include <stdio.h>
+
+void debugLn(char *s) {
+ printf("%s\n", s);
+}