From bfb5545215b94ab24e6971d992558d7de736cdd9 Mon Sep 17 00:00:00 2001 From: Pascal Jaeger Date: Tue, 18 Oct 2022 08:17:56 +0200 Subject: [PATCH] Fix K&R C declaration to work with Clang16 By default Clang16 will not allow implicit function declarations, which would let this build fail with it. Fix #106 Signed-off-by: Pascal Jaeger --- src/remove.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remove.h b/src/remove.h index 56380ea..2310e47 100644 --- a/src/remove.h +++ b/src/remove.h @@ -22,7 +22,7 @@ int remove_box(); -void output_input(); +void output_input(const int trim_only); #endif /*REMOVE_H*/