From 7a69d0103dadc08f228d14b27d38df193044bb29 Mon Sep 17 00:00:00 2001 From: Kirill Petrashin Date: Sat, 28 Mar 2026 20:20:18 +0300 Subject: Add a FIXME --- stack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.c b/stack.c index f0624c8..d719cb3 100644 --- a/stack.c +++ b/stack.c @@ -11,7 +11,7 @@ PositionStack ps_new(void) { } int ps_push(PositionStack *ps, Position pos) { - if (ps->top >= STACK_SIZE) return -1; + if (ps->top >= STACK_SIZE) return -1; /* FIXME: do a dynamic stack */ ps->arr[ps->top] = pos; ps->top += 1; return 0; -- cgit v1.2.3