psp port runs, bad colors
[libpicofe.git] / common / lprintf.h
... / ...
CommitLineData
1#if defined(__GP2X__)
2 #include <stdio.h>
3 #define lprintf printf
4#elif defined(PSP)
5 #if 0
6 #include <stdio.h>
7 #define lprintf printf
8 #else
9 extern void lprintf_f(const char *fmt, ...);
10 #define lprintf lprintf_f
11 #endif
12#else
13 #include "giz.h"
14#endif
15