summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2003-06-05 03:39:51 +0000
committermillert <millert@openbsd.org>2003-06-05 03:39:51 +0000
commit0e3aed5c53d4242b5f413c7fb10f2a3a65b629b9 (patch)
treec762fe22513b4a425853a2e38b65ead2037dc02a
parentAttempt to deal w/ large files sanely by using off_t and fseeko(). (diff)
downloadwireguard-openbsd-0e3aed5c53d4242b5f413c7fb10f2a3a65b629b9.tar.xz
wireguard-openbsd-0e3aed5c53d4242b5f413c7fb10f2a3a65b629b9.zip
Add my license
-rw-r--r--distrib/special/more/more.c23
1 files changed, 21 insertions, 2 deletions
diff --git a/distrib/special/more/more.c b/distrib/special/more/more.c
index 72dcd193d53..eae3becfb9e 100644
--- a/distrib/special/more/more.c
+++ b/distrib/special/more/more.c
@@ -1,5 +1,24 @@
-/* $OpenBSD: more.c,v 1.24 2003/06/05 03:17:47 millert Exp $ */
+/* $OpenBSD: more.c,v 1.25 2003/06/05 03:39:51 millert Exp $ */
+/*
+ * Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Sponsored in part by the Defense Advanced Research Projects
+ * Agency (DARPA) and Air Force Research Laboratory, Air Force
+ * Materiel Command, USAF, under agreement number F39502-99-1-0512.
+ */
/*-
* Copyright (c) 1980 The Regents of the University of California.
* All rights reserved.
@@ -39,7 +58,7 @@ static const char copyright[] =
#if 0
static const char sccsid[] = "@(#)more.c 5.28 (Berkeley) 3/1/93";
#else
-static const char rcsid[] = "$OpenBSD: more.c,v 1.24 2003/06/05 03:17:47 millert Exp $";
+static const char rcsid[] = "$OpenBSD: more.c,v 1.25 2003/06/05 03:39:51 millert Exp $";
#endif
#endif /* not lint */