X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=common%2Flprintf.h;h=1d304721347a9f404a843b3c95c863c1e75f6632;hb=426ecc582f3f6f3d04f7b7ae25b548be7178c4fd;hp=d09a46186a79add23cded32d4c7939669c5319ff;hpb=2951214ea65ce2e2ac40671511b8d5a9ea2d2842;p=libpicofe.git diff --git a/common/lprintf.h b/common/lprintf.h index d09a461..1d30472 100644 --- a/common/lprintf.h +++ b/common/lprintf.h @@ -1,7 +1,9 @@ -#if defined(__GP2X__) || defined(PSP) -#include -#define lprintf printf +#if defined(__GP2X__) + #include + #define lprintf printf +#elif defined(PSP) + extern void lprintf(const char *fmt, ...); #else -#include "giz.h" + #include "giz.h" #endif