diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-29 00:31:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-29 00:31:17 +0000 |
commit | 3ed6844641caad4ef22b8e261bfa7b0edc0dc8c9 (patch) | |
tree | 0862dc24292f4c44678d0bdd43cc1b99f80ecb3b /sys/stand/cat.c | |
parent | 71664a6638bb10ecb2014eab1aba455ce6fdec19 (diff) |
these standalone commands are never used anymore; ok tom
Diffstat (limited to 'sys/stand/cat.c')
-rw-r--r-- | sys/stand/cat.c | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/sys/stand/cat.c b/sys/stand/cat.c deleted file mode 100644 index a47ca2efb9b..00000000000 --- a/sys/stand/cat.c +++ /dev/null @@ -1,52 +0,0 @@ -/* $OpenBSD: cat.c,v 1.3 2003/06/02 23:28:20 millert Exp $ */ - -/*- - * Copyright (c) 1993 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -#ifndef lint -static char copyright[] = -"@(#) Copyright (c) 1993\n\ - The Regents of the University of California. All rights reserved.\n"; -#endif /* not lint */ - -#ifndef lint -/*static char sccsid[] = "from: @(#)cat.c 8.1 (Berkeley) 6/11/93";*/ -static char rcsid[] = "$OpenBSD: cat.c,v 1.3 2003/06/02 23:28:20 millert Exp $"; -#endif /* not lint */ - -main() -{ - register int fd; - char c; - - fd = getfile("File", 0); - while (read(fd, &c, 1) == 1) - putchar(c); - exit(0); -} |