Unbreak the GHC build with older versions of gcc
[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
9 #ifdef __GLASGOW_HASKELL__
10 # include "Stg.h"
11 #endif
12
13 #include "HsBase.h"
14
15 #ifdef __GLASGOW_HASKELL__
16 # include "RtsMessages.h"
17
18 void errorBelch2(const char*s, char *t)
19 {
20     errorBelch(s,t);
21 }
22
23 void debugBelch2(const char*s, char *t)
24 {
25     debugBelch(s,t);
26 }
27 #endif /* __GLASGOW_HASKELL__ */