Add a GHC.Debug module, with debugLn :: [Char] -> IO ()
[ghc-prim.git] / cbits / debug.c
1
2 #include <stdio.h>
3
4 void debugLn(char *s) {
5     printf("%s\n", s);
6 }