From db11bfcbd611a99da6ea9229ad8bdcaa811593a9 Mon Sep 17 00:00:00 2001
From: Austin Seipp <austin@well-typed.com>
Date: Fri, 25 Oct 2013 08:37:42 -0500
Subject: [PATCH] Make sure to #include Stable.h in Linker.c

It needs freeStablePtr, which tripped my validate build, due to an
implicit declaration warning. I'm quite surprised this somehow did not
trip the build before.

Signed-off-by: Austin Seipp <austin@well-typed.com>
---
 rts/Linker.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/rts/Linker.c b/rts/Linker.c
index c52b0f976eed..7ef33bc73f94 100644
--- a/rts/Linker.c
+++ b/rts/Linker.c
@@ -29,6 +29,7 @@
 #include "StgPrimFloat.h" // for __int_encodeFloat etc.
 #include "Proftimer.h"
 #include "GetEnv.h"
+#include "Stable.h"
 
 #if !defined(mingw32_HOST_OS)
 #include "posix/Signals.h"
-- 
GitLab