c67: remove global #define's for TRUE/FALSE/BOOL

Also use uppercase TRUE/FALSE instead of true/false
This commit is contained in:
grischka
2013-02-04 15:10:08 +01:00
parent f715207249
commit 263dc93cfa
5 changed files with 32 additions and 32 deletions

2
tcc.c
View File

@ -469,7 +469,7 @@ static int parse_args(TCCState *s, int argc, char **argv)
}
}
}
if (NULL != (r1 = tcc_set_linker(s, (char *) linker_arg.data, TRUE)))
if (NULL != (r1 = tcc_set_linker(s, (char *) linker_arg.data, 1)))
tcc_error("unsupported linker option '%s'", r1);
/* fixme: these options could be different on your platform */
if (was_pthread && output_type != TCC_OUTPUT_OBJ) {