From 0790115160dcca0e2c84157523db1b83db4b1774 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 20 Jan 2010 19:50:24 +0000 Subject: [PATCH] We no longer need a prototype for __eprintf It looks like it was only needed on OSX, but it has a prototype in assert.h which now gets #included. --- rts/Linker.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rts/Linker.c b/rts/Linker.c index 91354a3..7e93765 100644 --- a/rts/Linker.c +++ b/rts/Linker.c @@ -977,8 +977,7 @@ typedef struct _RtsSymbolVal { SymI_NeedsProto(__muldi3) \ SymI_NeedsProto(__ashldi3) \ SymI_NeedsProto(__ashrdi3) \ - SymI_NeedsProto(__lshrdi3) \ - SymI_NeedsProto(__eprintf) + SymI_NeedsProto(__lshrdi3) #else #define RTS_LIBGCC_SYMBOLS #endif -- 1.7.10.4