mirror of
https://gitlab.com/shinovon/re3-symbian.git
synced 2026-05-22 17:47:20 +03:00
11 lines
140 B
C
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
|