diff options
| author | Christian Jullien <jullien@coltrane.eligis.com> | 2016-09-26 06:42:43 +0200 |
|---|---|---|
| committer | Christian Jullien <jullien@coltrane.eligis.com> | 2016-09-26 06:42:43 +0200 |
| commit | 6db7a2157bd44cdc1a764e8c7a767ea1dee8e006 (patch) | |
| tree | ec164a0fdd2f5ef8a993d888aea82343f679637f /tccpp.c | |
| parent | 30238b1ebdef35ea2840f4180387d488ae2daa9c (diff) | |
| parent | ff158bffe6f7ddc2b727069daa238b396c318e14 (diff) | |
| download | tinycc-6db7a2157bd44cdc1a764e8c7a767ea1dee8e006.tar.gz tinycc-6db7a2157bd44cdc1a764e8c7a767ea1dee8e006.tar.bz2 | |
Merge branch 'mob' of git://repo.or.cz/tinycc into mypatch
Add Visual Studio processor identification
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; |
