X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=mktemp.c;h=bc47d0af0fe922598c6805074fa8d7705a2c1fc9;hb=0a6859031493951de02cc00e18f0da2bd305fc05;hp=b30b9a08fbfb1e2e92e12f26474e79eb271a36ff;hpb=227a59b05d6df9b4be5990915646249d6f548822;p=oweals%2Fbusybox.git diff --git a/mktemp.c b/mktemp.c index b30b9a08f..bc47d0af0 100644 --- a/mktemp.c +++ b/mktemp.c @@ -22,22 +22,19 @@ * */ -#include "internal.h" #include #include - +#include +#include +#include +#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; }