From: Paul Eggert Date: Sun, 24 Sep 2023 00:19:35 +0000 (-0700) Subject: wc: pacify ‘make syntax-check’ X-Git-Tag: v9.5~137 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de4e7042733a05a0e3097c372744af438db3e856;p=thirdparty%2Fcoreutils.git wc: pacify ‘make syntax-check’ * src/wc_avx2.c (wc_lines_avx2): Explicitly make it ‘extern’. Not sure why this is needed. --- diff --git a/src/wc_avx2.c b/src/wc_avx2.c index 79e96e4f92..fa4eb893f1 100644 --- a/src/wc_avx2.c +++ b/src/wc_avx2.c @@ -28,7 +28,7 @@ #define BUFSIZE (16320) /* Read FD and return a summary. */ -struct wc_lines +extern struct wc_lines wc_lines_avx2 (int fd) { intmax_t lines = 0;