10 lines
185 B
C
10 lines
185 B
C
// https://github.com/embeddedartistry/libc/blob/master/src/stdio/putchar.c
|
|
|
|
#include <printf/printf.h>
|
|
#include <stdio.h>
|
|
|
|
int __wrap_putchar(int c) {
|
|
putchar_((char)c);
|
|
return c;
|
|
}
|