From 59c5470adeb99da30dfd9d45a6035ec0936b29f3 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 28 May 2024 01:56:13 -0400 Subject: Tweak default visibility settings --- json.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'json.c') diff --git a/json.c b/json.c index 445f81b..448dbe7 100644 --- a/json.c +++ b/json.c @@ -5,6 +5,7 @@ #include #include "json.h" +#include "utils.h" __attribute__((nonnull)) static int _json_match(const char *text, match_t *m, int comma, bool verbose); @@ -77,7 +78,7 @@ static int _json_match(const char *text, match_t *m, int comma, bool verbose) // // Print a match object as a JSON object. // -void json_match(const char *text, match_t *m, bool verbose) +public void json_match(const char *text, match_t *m, bool verbose) { (void)_json_match(text, m, 0, verbose); } -- cgit v1.2.3