re3-symbian/vendor/librw/src/printf_stub.c
2026-05-14 13:52:53 +05:00

11 lines
140 B
C

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