From e9e9e624cae71ffad19833180d2c1eb43569c807 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 5 Jul 2026 01:17:52 +0100 Subject: [PATCH] Add declarations for internal functions --- scratchpad/dag.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scratchpad/dag.c b/scratchpad/dag.c index e9218e3..5f8870d 100644 --- a/scratchpad/dag.c +++ b/scratchpad/dag.c @@ -145,6 +145,8 @@ wp_intern b8 prGraphEdgeExists(const PrGraph *graph, u64 from_idx, u64 t wp_intern u64 prGraphVertexCount(const PrGraph *graph); wp_intern WpU64Array prGraphTopologicalSort(const PrGraph *graph, const WpAllocator *allocator); +wp_intern void _unlinkForward(PrGraph *graph, u64 from_idx, PrGraphEdge *edge); +wp_intern void _unlinkBackward(PrGraph *graph, u64 to_idx, PrGraphEdge *edge); /* --------------------------------------------------------------------------- * PrNodeManager implementation * -------------------------------------------------------------------------*/