Avoid calling varargs functions using the FFI
[ghc-base.git] / cbits / PrelIOUtils.c
index f37c4b6..556736e 100644 (file)
@@ -7,3 +7,12 @@
 #define INLINE
 #include "HsBase.h"
 
+void errorBelch2(const char*s, char *t)
+{
+    return errorBelch(s,t);
+}
+
+void debugBelch2(const char*s, char *t)
+{
+    return debugBelch(s,t);
+}