aboutsummaryrefslogtreecommitdiff
path: root/tests/cris/check_int64.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cris/check_int64.c')
-rw-r--r--tests/cris/check_int64.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/cris/check_int64.c b/tests/cris/check_int64.c
index 99ca6f1158..fc600176e2 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;
}