Add a debugErrLn function, which is like debugLn except it prints to stderr
[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 }