mirror of
https://github.com/mirror/tinycc.git
synced 2026-09-05 12:14:52 +08:00
tcc_add_support(): void return for win
This commit is contained in:
2
tccpe.c
2
tccpe.c
@@ -1855,7 +1855,7 @@ ST_FUNC void pe_add_unwind_data(unsigned start, unsigned end, unsigned stack)
|
||||
|
||||
static void tcc_add_support(TCCState *s1, const char *filename)
|
||||
{
|
||||
if(!filename || strlen(filename)==0) return 0;
|
||||
if(!filename || strlen(filename)==0) return;
|
||||
if (tcc_add_dll(s1, filename, 0) < 0)
|
||||
tcc_error_noabort("%s not found", filename);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user