non-GHC: leave out Belch functions
[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 #ifdef __GLASGOW_HASKELL__
10 # include "Stg.h"
11 # include "RtsMessages.h"
12
13 void errorBelch2(const char*s, char *t)
14 {
15     errorBelch(s,t);
16 }
17
18 void debugBelch2(const char*s, char *t)
19 {
20     debugBelch(s,t);
21 }
22 #endif /* __GLASGOW_HASKELL__ */