Fix warnings in PrelIOUtils.c
[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 #include "Stg.h"
10 #include "RtsMessages.h"
11
12 void errorBelch2(const char*s, char *t)
13 {
14     errorBelch(s,t);
15 }
16
17 void debugBelch2(const char*s, char *t)
18 {
19     debugBelch(s,t);
20 }