From b3bc5823903cd149c22203de0c224ff9b4bcee47 Mon Sep 17 00:00:00 2001 From: Quinton Miller Date: Tue, 5 Jul 2022 08:14:35 +0800 Subject: [PATCH] Add missing `EXPORT` in interpreter spec --- spec/compiler/data/interpreter/sum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/compiler/data/interpreter/sum.c b/spec/compiler/data/interpreter/sum.c index dead573e9aca..5a263c766950 100644 --- a/spec/compiler/data/interpreter/sum.c +++ b/spec/compiler/data/interpreter/sum.c @@ -27,6 +27,6 @@ EXPORT long sum_int(int count, ...) { return total; } -int simple_sum_int(int a, int b) { +EXPORT int simple_sum_int(int a, int b) { return a + b; }