From afca52d96eb43e6ceec4e6976b1f90c367df27c9 Mon Sep 17 00:00:00 2001 From: orbea Date: Sun, 16 Oct 2022 09:04:55 -0700 Subject: src: Fix build with clang 16 These are no longer supported in upcoming clang versions. warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes] Reference: https://archives.gentoo.org/gentoo-dev/message/dd9f2d3082b8b6f8dfbccb0639e6e240 --- src/filelist.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/filelist.c') diff --git a/src/filelist.c b/src/filelist.c index 811151e..8da6e58 100644 --- a/src/filelist.c +++ b/src/filelist.c @@ -37,7 +37,6 @@ gib_list *filelist = NULL; gib_list *original_file_items = NULL; /* original file items from argv */ int filelist_len = 0; gib_list *current_file = NULL; -extern int errno; static gib_list *rm_filelist = NULL; @@ -156,7 +155,7 @@ static void feh_print_stat_error(char *path) } } -static void add_stdin_to_filelist() +static void add_stdin_to_filelist(void) { char buf[1024]; size_t readsize; @@ -657,7 +656,7 @@ char *feh_absolute_path(char *path) return(ret); } -void feh_save_filelist() +void feh_save_filelist(void) { char *tmpname; char *base_dir = ""; -- cgit v1.2.3