re-instate the documentation for 'Char', which got lost at some point
[ghc-prim.git] / cbits / debug.c
1
2 #include <stdio.h>
3
4 void debugLn(char *s) {
5     printf("%s\n", s);
6 }
7
8 void debugErrLn(char *s) {
9     fprintf(stderr, "%s\n", s);
10 }