From 7ce70739b56dd37c6188484a77a08d813ad6e7e9 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 26 Nov 2018 13:13:17 -0500 Subject: [PATCH] Mark str2int as static --- runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.c b/runtime.c index fb8fc767..b80de45b 100644 --- a/runtime.c +++ b/runtime.c @@ -2105,7 +2105,7 @@ Convert string s to int out. @return Indicates if the operation succeeded, or why it failed. */ -str2int_errno str2int(int *out, char *s, int base) +static str2int_errno str2int(int *out, char *s, int base) { char *end; if (s[0] == '\0' || isspace((unsigned char) s[0]))