diff options
Diffstat (limited to 'tccpp.c')
| -rw-r--r-- | tccpp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |
