Subversion Repositories Kolibri OS

Rev

Rev 9558 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9558 Rev 9782
Line 1215... Line 1215...
1215
#define free(p) use_tcc_free(p)
1215
#define free(p) use_tcc_free(p)
1216
#define malloc(s) use_tcc_malloc(s)
1216
#define malloc(s) use_tcc_malloc(s)
1217
#define realloc(p, s) use_tcc_realloc(p, s)
1217
#define realloc(p, s) use_tcc_realloc(p, s)
1218
#undef strdup
1218
#undef strdup
1219
#define strdup(s) use_tcc_strdup(s)
1219
#define strdup(s) use_tcc_strdup(s)
-
 
1220
// { Added by Coldy
-
 
1221
#define tcc_abort() tcc_error(0)
-
 
1222
// }
1220
PUB_FUNC void tcc_memstats(int bench);
1223
PUB_FUNC void tcc_memstats(int bench);
1221
PUB_FUNC void tcc_error_noabort(const char *fmt, ...);
1224
PUB_FUNC void tcc_error_noabort(const char *fmt, ...);
1222
PUB_FUNC NORETURN void tcc_error(const char *fmt, ...);
1225
PUB_FUNC NORETURN void tcc_error(const char *fmt, ...);
1223
PUB_FUNC void tcc_warning(const char *fmt, ...);
1226
PUB_FUNC void tcc_warning(const char *fmt, ...);