minor refactoring (lprintf)
[libpicofe.git] / pandora / plat.c
index b95334d..f1ae107 100644 (file)
@@ -5,7 +5,6 @@
 \r
 #include <stdio.h>\r
 #include <unistd.h>\r
-#include <stdarg.h>\r
 #include <sys/types.h>\r
 #include <sys/stat.h>\r
 #include <fcntl.h>\r
@@ -627,13 +626,3 @@ void plat_finish(void)
        printf("all done\n");\r
 }\r
 \r
-/* lprintf */\r
-void lprintf(const char *fmt, ...)\r
-{\r
-       va_list vl;\r
-\r
-       va_start(vl, fmt);\r
-       vprintf(fmt, vl);\r
-       va_end(vl);\r
-}\r
-\r