minor psp fixes
[picodrive.git] / platform / common / lprintf.h
CommitLineData
7d4906bf 1#if defined(__GP2X__)
2 #include <stdio.h>
3 #define lprintf printf
4#elif defined(PSP)
110df09c 5 extern void lprintf_f(const char *fmt, ...);
6 #define lprintf lprintf_f
e5f426aa 7#else
7d4906bf 8 #include "giz.h"
e5f426aa 9#endif
10