Support for tar -z option for uncompressing only
[oweals/busybox.git] / mkfifo.c
index 5d4126ac07008a824c9c44d583e764207c9f1086..ef4a5256f4ec0327469160ea58eb128c732d7771 100644 (file)
--- a/mkfifo.c
+++ b/mkfifo.c
@@ -20,7 +20,7 @@
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
 #include <sys/types.h>
 #include <errno.h>
@@ -55,7 +55,7 @@ extern int mkfifo_main(int argc, char **argv)
                usage(mkfifo_usage);
        if (mkfifo(*argv, mode) < 0) {
                perror("mkfifo");
-               exit(255);
+               return EXIT_FAILURE;
        }
-       return(TRUE);
+       return EXIT_SUCCESS;
 }