Tweaked output callbacks to match 'puts' signature

This commit is contained in:
2026-05-08 11:12:27 +10:00
parent 185f3896c5
commit be84a8dfe2
5 changed files with 24 additions and 37 deletions
+2 -1
View File
@@ -5,9 +5,10 @@
int counter = 0;
void counterCallback(const char* msg) {
int counterCallback(const char* msg) {
(void)msg;
counter++;
return 0;
}
int test_callbacks(void) {