some fixes
This commit is contained in:
15
bsp_hosted/boardconfig/print.c
Normal file
15
bsp_hosted/boardconfig/print.c
Normal file
@ -0,0 +1,15 @@
|
||||
#include "print.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
void printChar(const char* character, bool errStream) {
|
||||
if(errStream) {
|
||||
putc(*character, stderr);
|
||||
return;
|
||||
}
|
||||
putc(*character, stdout);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user