From ff158bffe6f7ddc2b727069daa238b396c318e14 Mon Sep 17 00:00:00 2001 From: Jean-Claude Beaudoin Date: Sun, 25 Sep 2016 22:32:41 -0400 Subject: Rein in unintended external functions. --- tccpp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tccpp.c') diff --git a/tccpp.c b/tccpp.c index 3453cf7..bd049c1 100644 --- a/tccpp.c +++ b/tccpp.c @@ -2048,7 +2048,7 @@ static void parse_escape_string(CString *outstr, const uint8_t *buf, int is_long cstr_wccat(outstr, '\0'); } -void parse_string(const char *s, int len) +static void parse_string(const char *s, int len) { uint8_t buf[1000], *p = buf; int is_long, sep; @@ -3208,7 +3208,7 @@ static int macro_subst_tok( return 0; } -int paste_tokens(int t1, CValue *v1, int t2, CValue *v2) +static int paste_tokens(int t1, CValue *v1, int t2, CValue *v2) { CString cstr; int n; -- cgit v1.3.1