diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-10-14 08:26:49 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-10-14 08:26:49 +0000 |
commit | 736e005597b4eba1f27a8fff53b01b2d79657c36 (patch) | |
tree | 0ff4cbe43a17a4a0bcccfb467d8c93b74c17f3c0 | |
parent | 51d55b6e883764216fee13450bd244293d590d79 (diff) |
remove duplicate includes and license; feedback and ok miod@
-rw-r--r-- | bin/mv/cp.c | 51 |
1 files changed, 2 insertions, 49 deletions
diff --git a/bin/mv/cp.c b/bin/mv/cp.c index e04d8d8220c..a69f2bafa9a 100644 --- a/bin/mv/cp.c +++ b/bin/mv/cp.c @@ -1,5 +1,6 @@ -/* $OpenBSD: cp.c,v 1.10 2021/11/28 19:28:41 deraadt Exp $ */ +/* $OpenBSD: cp.c,v 1.11 2024/10/14 08:26:48 jsg Exp $ */ /* $NetBSD: cp.c,v 1.14 1995/09/07 06:14:51 jtc Exp $ */ +/* $NetBSD: utils.c,v 1.6 1997/02/26 14:40:51 cgd Exp $ */ /* * Copyright (c) 1988, 1993, 1994 @@ -385,54 +386,6 @@ copy(char *argv[], enum op type, int fts_options) return (rval); } - -/* $OpenBSD: cp.c,v 1.10 2021/11/28 19:28:41 deraadt Exp $ */ -/* $NetBSD: utils.c,v 1.6 1997/02/26 14:40:51 cgd Exp $ */ - -/*- - * Copyright (c) 1991, 1993, 1994 - * 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. - */ - -#include <sys/types.h> -#include <sys/stat.h> -#include <sys/mman.h> -#include <sys/time.h> - -#include <err.h> -#include <errno.h> -#include <fcntl.h> -#include <fts.h> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <unistd.h> -#include <limits.h> - #define _MAXBSIZE (64 * 1024) static int |