Short term fix for conflicting types for 'tfp_printf' (#8157)

format code according to conventions [skip ci]
This commit is contained in:
Joel Challis
2020-03-01 18:46:40 +00:00
committed by Florian Didron
parent ae484e34a0
commit b3b8c6af3c
2 changed files with 14 additions and 10 deletions

View File

@@ -99,10 +99,10 @@ regs Kusti, 23.10.2004
void init_printf(void* putp, void (*putf)(void*, char));
void tfp_printf(char* fmt, ...);
void tfp_sprintf(char* s, char* fmt, ...);
int tfp_printf(const char* fmt, ...);
int tfp_sprintf(char* s, const char* fmt, ...);
void tfp_format(void* putp, void (*putf)(void*, char), char* fmt, va_list va);
void tfp_format(void* putp, void (*putf)(void*, char), const char* fmt, va_list va);
#define printf tfp_printf
#define sprintf tfp_sprintf