Finish off the libc5 porting effort. Everything now works with libc5
[oweals/busybox.git] / loadkmap.c
index 75e52e148f8cdbd1b75352e682ad82b53ca44906..905741467cc33e7371ceb8dffdcc7736b8eec7e3 100644 (file)
 #include <sys/ioctl.h>
 
 
-static const char loadkmap_usage[] = "loadkmap\n\n"
-       "Loads a binary keyboard translation table from standard input.\n";
+static const char loadkmap_usage[] = "loadkmap\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "Loads a binary keyboard translation table from standard input.\n"
+#endif
+       ;
 
 
 int loadkmap_main(int argc, char **argv)
@@ -91,5 +94,5 @@ int loadkmap_main(int argc, char **argv)
        /* Don't bother to close files.  Exit does that 
         * automagically, so we can save a few bytes */
        /* close(fd); */
-       exit(TRUE);
+       return(TRUE);
 }