X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=loadfont.c;h=1a724ca85e17cc07356a17844af904bc365641fb;hb=3a6da8c183142a2681a2382b63e970f457cf807b;hp=ec3e50560777e298233e535200fd5ff54f2d9a00;hpb=dd19c6990496023fe23fefef8f1798740f7d39c6;p=oweals%2Fbusybox.git diff --git a/loadfont.c b/loadfont.c index ec3e50560..1a724ca85 100644 --- a/loadfont.c +++ b/loadfont.c @@ -7,7 +7,6 @@ * Loads the console font, and possibly the corresponding screen map(s). * (Adapted for busybox by Matej Vela.) */ -#include "busybox.h" #include #include #include @@ -20,6 +19,7 @@ #include #include #include +#include "busybox.h" static const int PSF_MAGIC1 = 0x36; static const int PSF_MAGIC2 = 0x04; @@ -44,7 +44,7 @@ extern int loadfont_main(int argc, char **argv) int fd; if (argc != 1) - usage(loadfont_usage); + show_usage(); fd = open("/dev/tty0", O_RDWR); if (fd < 0)