X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=common%2Flprintf.h;h=dc49c655f2cdeee8014b70cc110cc275cb74a8b6;hb=6f748c477fca1c4962358f163fa19e3b5710bc33;hp=5cd176f5d6969037d36ad79664dc94e8ecdcdc24;hpb=c7a4ff64287b12487c7e9cc13ce3b7d2aa6e1f06;p=libpicofe.git diff --git a/common/lprintf.h b/common/lprintf.h index 5cd176f..dc49c65 100644 --- a/common/lprintf.h +++ b/common/lprintf.h @@ -1,6 +1,15 @@ #if defined(__GP2X__) -#define lprintf printf + #include + #define lprintf printf +#elif defined(PSP) + #if 1 + #include + #define lprintf printf + #else + extern void lprintf_f(const char *fmt, ...); + #define lprintf lprintf_f + #endif #else -#include "giz.h" + #include "giz.h" #endif