From 5aa99f31b10b421a2718ce08774b7a81ce31e6ff Mon Sep 17 00:00:00 2001 From: Hans Kristian Rosbach Date: Tue, 17 Nov 2015 15:45:45 +0100 Subject: [PATCH] Remove inline and extern from function declaration. --- arch/x86/insert_string_sse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2