mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-02 03:49:12 +08:00
Added fprintf fputc and _StdErr definitions
PX4 uses fprintf in numerous places but it is not supported by qurt. Signed-off-by: Mark Charlebois <charlebm@gmail.com>
This commit is contained in:
committed by
Julian Oes
parent
2c4187f21f
commit
1c5bfd28f0
@@ -176,3 +176,15 @@ int fputc(int c, FILE *stream)
|
|||||||
{
|
{
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int fprintf(FILE *stream, const char *format, ...)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int fputc(int c, FILE *stream)
|
||||||
|
{
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
|
||||||
|
FILE _Stderr;
|
||||||
|
|||||||
Reference in New Issue
Block a user