Define __STDC_HOSTED__ to a sane value
Define __STDC_HOSTED__ to one as the correct values should be either 1 or 0. Since tinycc is hosted, it should be set to 1. Thanks Christian Jullien for the report.
This commit is contained in:
parent
fe64a4d005
commit
3ad64ffe2e
1 changed files with 1 additions and 1 deletions
2
libtcc.c
2
libtcc.c
|
@ -924,7 +924,7 @@ LIBTCCAPI TCCState *tcc_new(void)
|
||||||
/* standard defines */
|
/* standard defines */
|
||||||
tcc_define_symbol(s, "__STDC__", NULL);
|
tcc_define_symbol(s, "__STDC__", NULL);
|
||||||
tcc_define_symbol(s, "__STDC_VERSION__", "199901L");
|
tcc_define_symbol(s, "__STDC_VERSION__", "199901L");
|
||||||
tcc_define_symbol(s, "__STDC_HOSTED__", NULL);
|
tcc_define_symbol(s, "__STDC_HOSTED__", 1);
|
||||||
|
|
||||||
/* target defines */
|
/* target defines */
|
||||||
#if defined(TCC_TARGET_I386)
|
#if defined(TCC_TARGET_I386)
|
||||||
|
|
Loading…
Reference in a new issue