1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 22:35:23 +03:00

common: add the missing extra headers to printf.h

Signed-off-by: Michael Hope <mlhx@google.com>
This commit is contained in:
Michael Hope 2015-06-23 22:46:39 +02:00 committed by Dominic Clifton
parent 41c0a7c262
commit d08579dd14

View file

@ -105,6 +105,10 @@ regs Kusti, 23.10.2004
#ifndef __TFP_PRINTF__
#define __TFP_PRINTF__
#include <stdarg.h>
#include "drivers/serial.h"
void init_printf(void *putp, void (*putf) (void *, char));
int tfp_printf(const char *fmt, ...);