diff options
| author | Jean-Claude Beaudoin <jean.claude.beaudoin@gmail.com> | 2016-09-25 22:32:41 -0400 |
|---|---|---|
| committer | Jean-Claude Beaudoin <jean.claude.beaudoin@gmail.com> | 2016-09-25 22:32:41 -0400 |
| commit | ff158bffe6f7ddc2b727069daa238b396c318e14 (patch) | |
| tree | 444eacffe5d11c0ee78e7ea8de349005891cb655 /tccpp.c | |
| parent | e38f49e32acfbf2217e65c51a1520eb90ad5ba71 (diff) | |
| download | tinycc-ff158bffe6f7ddc2b727069daa238b396c318e14.tar.gz tinycc-ff158bffe6f7ddc2b727069daa238b396c318e14.tar.bz2 | |
Rein in unintended external functions.
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; |
