From f2164ce0acef65e46d2e833f3457e42a581695a2 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Tue, 17 Aug 2021 21:55:52 +0200 Subject: [PATCH] fix: build with static lib --- src/discspan.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/discspan.c b/src/discspan.c index abbaddb..281225c 100644 --- a/src/discspan.c +++ b/src/discspan.c @@ -3,9 +3,12 @@ #include #include "spandisc.h" -#include "logic.h" #include "help.h" +extern void span(const char *input, const char *output, + unsigned long long split); +extern void (*status_print)(const char *output, medium_t disc); + typedef struct { char *input; char *output; -- 2.39.5