From 08a61938c60e7018fa1945f740fa53e9a8adfeed Mon Sep 17 00:00:00 2001 From: Andreas Dreyer Hysing Date: Mon, 22 Jun 2026 09:13:31 +0200 Subject: [PATCH] Fixed "widget-control.c:251:22: error: implicit declaration of function 'finish' [-Wimplicit-function-declaration]" --- widget-control.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/widget-control.c b/widget-control.c index 62b62f96..92d4f6c7 100644 --- a/widget-control.c +++ b/widget-control.c @@ -62,6 +62,8 @@ int *feature_first_value; // int feature_last_value[feature_end_index]; int *feature_last_value; +int finish(int return_value); + void feature_first_and_last_init(void) { int i, j; feature_first_value[true_feature_major_index] = -1;