From 9204a04e8e6efa4fd0763d6e0870f06d850a89d4 Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@smart-cactus.org> Date: Tue, 26 Sep 2023 22:44:08 -0400 Subject: [PATCH] rts/IPE: Don't expose helper in header --- rts/IPE.c | 1 + rts/IPE.h | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/rts/IPE.c b/rts/IPE.c index 2e4088fee94e..1306cef0e0a5 100644 --- a/rts/IPE.c +++ b/rts/IPE.c @@ -79,6 +79,7 @@ static HashTable *ipeMap = NULL; static IpeBufferListNode *ipeBufferList = NULL; static void decompressIPEBufferListNodeIfCompressed(IpeBufferListNode*); +static void updateIpeMap(void); #if defined(THREADED_RTS) diff --git a/rts/IPE.h b/rts/IPE.h index cc2d4eca504b..d8d6e5fa6a8f 100644 --- a/rts/IPE.h +++ b/rts/IPE.h @@ -14,7 +14,6 @@ #include "BeginPrivate.h" void dumpIPEToEventLog(void); -void updateIpeMap(void); void initIpe(void); void exitIpe(void); -- GitLab