forked from mirrors/qmk_userspace
Short term fix for conflicting types for 'tfp_printf' (#8157)
This commit is contained in:
parent
629950e51b
commit
e7fb873ee2
2 changed files with 12 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue