X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=gp2x%2Fgp2x.c;fp=gp2x%2Fgp2x.c;h=3ed64fb35af18c4fc1ae72cf1c446139682d5b4d;hb=6245d5a03dba96b93c7cc0a247d17ff3d9e08325;hp=4995f08b6be7a3925758a083dff75f99869c80fa;hpb=677b5dd8142b2f98b22a26e4d1757355cba4bdc5;p=libpicofe.git diff --git a/gp2x/gp2x.c b/gp2x/gp2x.c index 4995f08..3ed64fb 100644 --- a/gp2x/gp2x.c +++ b/gp2x/gp2x.c @@ -22,6 +22,7 @@ #include #include +#include #include #include #include @@ -375,4 +376,13 @@ void gp2x_deinit(void) } } +/* lprintf */ +void lprintf(const char *fmt, ...) +{ + va_list vl; + + va_start(vl, fmt); + vprintf(fmt, vl); + va_end(vl); +}