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 <pascal.jaeger@leimstift.de>
This commit is contained in:
Pascal Jaeger 2022-10-18 08:17:56 +02:00 committed by Thomas Jensen
parent 61562b0158
commit bfb5545215

View File

@ -22,7 +22,7 @@
int remove_box();
void output_input();
void output_input(const int trim_only);
#endif /*REMOVE_H*/