]> Zhao Yanbai Git Server - minix.git/commitdiff
Importing usr.bin/mkfifo 57/1157/2
authorThomas Cort <tcort@minix3.org>
Mon, 18 Nov 2013 21:40:55 +0000 (16:40 -0500)
committerGerrit Code Review <gerrit@gerrit>
Tue, 19 Nov 2013 11:22:18 +0000 (12:22 +0100)
Replaces commands/mkfifo. No Minix-specific changes needed.

Change-Id: Idb20430d4297c7011fb7e2ef6b0876ebb2776c1c

commands/Makefile
releasetools/nbsd_ports
usr.bin/Makefile
usr.bin/mkfifo/Makefile [moved from commands/mkfifo/Makefile with 100% similarity]
usr.bin/mkfifo/mkfifo.1 [moved from commands/mkfifo/mkfifo.1 with 100% similarity]
usr.bin/mkfifo/mkfifo.c [moved from commands/mkfifo/mkfifo.c with 91% similarity]

index 99bc45defbb95e5a40cfb5d274f5ca30104c9a19..746e7d4370eb61ba1b1f63c392dc18e9e506dc40 100644 (file)
@@ -15,7 +15,7 @@ SUBDIR=       add_route arp ash at backup btrace \
        intr ipcrm ipcs irdpd isoread last \
        less loadkeys loadramdisk logger look lp \
        lpd lspci mail MAKEDEV \
-       mined mkfifo \
+       mined \
        mount mt netconf \
        nonamed patch \
        ping postinstall poweroff prep printroot \
index ec06af2f51bafd868178eb56f6a093874e2642fd..e53b937915a550e6d3810532422b6931feedd55d 100644 (file)
 2012/10/17 12:00:00,usr.bin/menuc
 2013/10/25 12:00:00,usr.bin/mesg
 2010/10/15 05:46:48,usr.bin/mkdep
+2012/10/17 12:00:00,usr.bin/mkfifo
 2012/10/17 12:00:00,usr.bin/mkstr
 2009/08/15 20:44:56,usr.bin/mktemp
 2012/10/17 12:00:00,usr.bin/msgc
index 1c52e2b5fd01255efe7198c172b7d2420fda9b56..9dfaf34ab10055c15af5a2caaf281bb6a71db0b1 100644 (file)
@@ -16,7 +16,7 @@ SUBDIR= asa \
        lam ldd leave \
        lock login logname lorder m4 \
        machine make man menuc mesg \
-       mkdep mkstr mktemp \
+       mkdep mkfifo mkstr mktemp \
        msgc \
        nbperf newgrp nice nl nohup nvi \
        passwd paste pathchk pr \
similarity index 91%
rename from commands/mkfifo/mkfifo.c
rename to usr.bin/mkfifo/mkfifo.c
index 368787def27a91abdcc0a17e4c6a52ef5643df4a..9d49ec57d18dd7068228398854819f00156b2a4b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: mkfifo.c,v 1.12 2008/07/21 14:19:24 lukem Exp $        */
+/*     $NetBSD: mkfifo.c,v 1.13 2011/09/04 20:30:34 joerg Exp $        */
 
 /*
  * Copyright (c) 1990, 1993
  */
 
 #include <sys/cdefs.h>
-#if 0
 #ifndef lint
 __COPYRIGHT("@(#) Copyright (c) 1990, 1993\
  The Regents of the University of California.  All rights reserved.");
 #endif /* not lint */
-#endif
 
-#if 0
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)mkfifo.c   8.2 (Berkeley) 1/5/94";
 #endif
-__RCSID("$NetBSD: mkfifo.c,v 1.12 2008/07/21 14:19:24 lukem Exp $");
+__RCSID("$NetBSD: mkfifo.c,v 1.13 2011/09/04 20:30:34 joerg Exp $");
 #endif /* not lint */
-#endif
 
 #include <stdio.h>
 #include <stdlib.h>
@@ -56,13 +52,10 @@ __RCSID("$NetBSD: mkfifo.c,v 1.12 2008/07/21 14:19:24 lukem Exp $");
 #include <unistd.h>
 #include <err.h>
 
-int    main __P((int, char **));
-static void usage __P((void));
+__dead static void usage(void);
 
 int
-main(argc, argv)
-       int argc;
-       char *argv[];
+main(int argc, char *argv[])
 {
        int ch, exitval;
        void *set;
@@ -107,7 +100,7 @@ main(argc, argv)
 }
 
 static void
-usage()
+usage(void)
 {
        (void)fprintf(stderr, "usage: mkfifo [-m mode] fifoname ...\n");
        exit(1);