Avoid calling varargs functions using the FFI
[ghc-base.git] / cbits / PrelIOUtils.c
1 /* 
2  * (c) The University of Glasgow 2002
3  *
4  * static versions of the inline functions in HsCore.h
5  */
6
7 #define INLINE
8 #include "HsBase.h"
9
10 void errorBelch2(const char*s, char *t)
11 {
12     return errorBelch(s,t);
13 }
14
15 void debugBelch2(const char*s, char *t)
16 {
17     return debugBelch(s,t);
18 }