From: Hans Kristian Rosbach Date: Tue, 17 Nov 2015 14:45:45 +0000 (+0100) Subject: Remove inline and extern from function declaration. X-Git-Tag: 1.9.9-b1~793^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F56%2Fhead;p=thirdparty%2Fzlib-ng.git Remove inline and extern from function declaration. --- diff --git a/arch/x86/insert_string_sse.c b/arch/x86/insert_string_sse.c index 4bbda506..1e8ec95c 100644 --- a/arch/x86/insert_string_sse.c +++ b/arch/x86/insert_string_sse.c @@ -16,7 +16,7 @@ * (except for the last MIN_MATCH-1 bytes of the input file). */ #ifdef X86_SSE4_2_CRC_HASH -extern inline Pos insert_string_sse(deflate_state *const s, const Pos str, uInt count) { +Pos insert_string_sse(deflate_state *const s, const Pos str, uInt count) { Pos ret = 0; uInt idx; unsigned *ip, val, h = 0;