From 4a6648f44eefbfbea38a1de56f8a8e44a8892941 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Mon, 17 Jan 2011 20:26:30 +0000 Subject: Replace 'extern inline' with 'static inline' Acked-by: Edgar E. Iglesias Signed-off-by: Blue Swirl --- tests/cris/check_int64.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tests/cris/check_int64.c') diff --git a/tests/cris/check_int64.c b/tests/cris/check_int64.c index 99ca6f1..fc60017 100644 --- a/tests/cris/check_int64.c +++ b/tests/cris/check_int64.c @@ -5,11 +5,13 @@ #include "crisutils.h" -extern inline int64_t add64(const int64_t a, const int64_t b) { +static inline int64_t add64(const int64_t a, const int64_t b) +{ return a + b; } -extern inline int64_t sub64(const int64_t a, const int64_t b) { +static inline int64_t sub64(const int64_t a, const int64_t b) +{ return a - b; } -- cgit v1.1