From 89b189113a98e83405fc75edf434cf08d088dc45 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Fri, 13 Aug 2021 07:42:00 +0200 Subject: [PATCH] fix: extern methods --- discspan/discspan.c | 2 -- discspan/help.h | 2 +- libspandisc/logic.c | 4 ---- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/discspan/discspan.c b/discspan/discspan.c index d073143..962951d 100644 --- a/discspan/discspan.c +++ b/discspan/discspan.c @@ -6,8 +6,6 @@ #include "../libspandisc/logic.h" #include "help.h" -extern void useage(); - typedef struct { char *input; char *output; diff --git a/discspan/help.h b/discspan/help.h index d88fd30..5744339 100644 --- a/discspan/help.h +++ b/discspan/help.h @@ -1,6 +1,6 @@ #ifndef _HELP_H #define _HELP_H -void usage(); +void useage(); #endif diff --git a/libspandisc/logic.c b/libspandisc/logic.c index 3d28c1c..0ab352d 100644 --- a/libspandisc/logic.c +++ b/libspandisc/logic.c @@ -7,10 +7,6 @@ #include "splitter.h" #include "filehandler.h" -extern void read_input_file(const char *input, medium_t *srcdata); -extern void write_output_file(const char *output, medium_t disc); -extern collection_t splitall(medium_t *srcdata); - void on_status_print(const char *output, medium_t disc) { if (status_print != NULL) -- 2.47.3