Supress logging

This commit is contained in:
Shinovon 2026-05-14 13:52:53 +05:00
parent 3bec747ea6
commit 78e6740735
4 changed files with 22 additions and 6 deletions

11
vendor/librw/src/printf_stub.c vendored Normal file
View file

@ -0,0 +1,11 @@
#ifndef _DEBUG
#include <stdio.h>
int printf(const char * __restrict s, ...) {
return 0;
}
int puts(const char *s) {
return 0;
}
#endif