Rewritten by Manuel Novoa III.
[oweals/busybox.git] / mktemp.c
index b30b9a08fbfb1e2e92e12f26474e79eb271a36ff..bc47d0af0fe922598c6805074fa8d7705a2c1fc9 100644 (file)
--- a/mktemp.c
+++ b/mktemp.c
  *
  */
 
-#include "internal.h"
 #include <stdio.h>
 #include <errno.h>
-
+#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 [-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
-                               );
+               show_usage();
        if(mkstemp(argv[argc-1]) < 0)
-                       exit(FALSE);
+               return EXIT_FAILURE;
        (void) puts(argv[argc-1]);
-       exit(TRUE);
+       return EXIT_SUCCESS;
 }