From: Bastian Dehn Date: Tue, 17 Aug 2021 19:55:52 +0000 (+0200) Subject: fix: build with static lib X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=f2164ce0acef65e46d2e833f3457e42a581695a2;p=discspan.git fix: build with static lib --- 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;