1
0
Fork 0

[Core] Update mpaland/printf to eyalroz/printf fork (#16163)

mpaland printf implementation was abandoned in ~2019 and the fork by
eyalroz is now regarded to be the goto replacement of it. So this commit
incoporates the changes needed to use this fork in QMK.

Note that pointer ptrdiff_t is always supported since commit
51c90f93a97fdaef895783ecbe24569be0db7cb8
This commit is contained in:
Stefan Kerkmann 2022-07-07 09:27:50 +02:00 committed by GitHub
parent 8f086faf8a
commit d9bb189e25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 61 additions and 39 deletions

View file

@ -28,6 +28,6 @@ void print_set_sendchar(sendchar_func_t send) {
func = send;
}
void _putchar(char character) {
void putchar_(char character) {
func(character);
}