Rewritten by Manuel Novoa III.
[oweals/busybox.git] / mktemp.c
index 247d16d24e0b4ef44ab2f24ca7acfdf044d114a1..bc47d0af0fe922598c6805074fa8d7705a2c1fc9 100644 (file)
--- a/mktemp.c
+++ b/mktemp.c
  *
  */
 
-#include "internal.h"
 #include <stdio.h>
 #include <errno.h>
-
-const char mktemp_usage[] =
-       "mktemp [-q] TEMPLATE\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nCreates a temporary file with its name based on TEMPLATE.\n"
-       "TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX).\n"
-#endif
-       ;
+#include <string.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include "busybox.h"
 
 extern int mktemp_main(int argc, char **argv)
 {
        if (argc != 2 && (argc != 3 || strcmp(argv[1], "-q")))
-               usage(mktemp_usage);
+               show_usage();
        if(mkstemp(argv[argc-1]) < 0)
-               exit(FALSE);
+               return EXIT_FAILURE;
        (void) puts(argv[argc-1]);
-       return(TRUE);
+       return EXIT_SUCCESS;
 }