Skip to content
Snippets Groups Projects
Commit 1fff0d6d authored by Mark Charlebois's avatar Mark Charlebois Committed by Julian Oes
Browse files

Added fprintf fputc and _StdErr definitions


PX4 uses fprintf in numerous places but it is not supported by qurt.

Signed-off-by: default avatarMark Charlebois <charlebm@gmail.com>
parent a495e344
No related branches found
No related tags found
No related merge requests found
......@@ -166,3 +166,15 @@ int write(int a, char const *b, int c)
{
return -1;
}
int fprintf(FILE *stream, const char *format, ...)
{
return 0;
}
int fputc(int c, FILE *stream)
{
return c;
}
FILE _Stderr;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment