From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Tue, 6 Sep 2022 15:31:26 +0000 (+0100) Subject: patch 9.0.0395: clang warnings for function prototypes X-Git-Tag: v9.0.0395 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=635bb4908577738c5658a95672259b8537d97d49;p=vim patch 9.0.0395: clang warnings for function prototypes Problem: Clang warnings for function prototypes. Solution: Remove incomplete function prototypes. (closes #11068) --- diff --git a/src/version.c b/src/version.c index df8ab270d..2cf848c63 100644 --- a/src/version.c +++ b/src/version.c @@ -703,6 +703,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 395, /**/ 394, /**/ diff --git a/src/xxd/xxd.c b/src/xxd/xxd.c index c9e4c4678..2105a1c9c 100644 --- a/src/xxd/xxd.c +++ b/src/xxd/xxd.c @@ -134,9 +134,6 @@ extern void perror __P((char *)); # endif #endif -extern long int strtol(); -extern long int ftell(); - char version[] = "xxd 2022-01-14 by Juergen Weigert et al."; #ifdef WIN32 char osver[] = " (Win32)";