syncprintf.c
606 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include "xstdio.h"
#include "os.h"
#include "os_internal.h"
#include "rdb.h"
extern void *__printfunc;
void __osSyncVPrintf(const char *fmt, va_list ap)
{
#ifndef _FINALROM
int ans;
if (__printfunc)
ans = _Printf(__printfunc, NULL, fmt, ap);
#endif
}
void osSyncPrintf(const char *fmt, ...)
{
#ifndef _FINALROM
va_list ap;
va_start(ap, fmt);
__osSyncVPrintf( fmt , ap);
va_end(ap);
#endif
}
void rmonPrintf(const char *fmt, ...)
{
#ifndef _FINALROM
int ans;
va_list ap;
va_start(ap, fmt);
if (__printfunc)
ans = _Printf(__printfunc, NULL, fmt, ap);
va_end(ap);
#endif
}