Blame LICENSE.wingetopt

Packit 2997f0
For the files wingetopt.c wingetopt.h downloaded from https://github.com/alex85k/wingetopt
Packit 2997f0
Packit 2997f0
/*
Packit 2997f0
 * Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com>
Packit 2997f0
 *
Packit 2997f0
 * Permission to use, copy, modify, and distribute this software for any
Packit 2997f0
 * purpose with or without fee is hereby granted, provided that the above
Packit 2997f0
 * copyright notice and this permission notice appear in all copies.
Packit 2997f0
 *
Packit 2997f0
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
Packit 2997f0
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
Packit 2997f0
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
Packit 2997f0
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
Packit 2997f0
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
Packit 2997f0
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
Packit 2997f0
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Packit 2997f0
 *
Packit 2997f0
 * Sponsored in part by the Defense Advanced Research Projects
Packit 2997f0
 * Agency (DARPA) and Air Force Research Laboratory, Air Force
Packit 2997f0
 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
Packit 2997f0
 */
Packit 2997f0
/*-
Packit 2997f0
 * Copyright (c) 2000 The NetBSD Foundation, Inc.
Packit 2997f0
 * All rights reserved.
Packit 2997f0
 *
Packit 2997f0
 * This code is derived from software contributed to The NetBSD Foundation
Packit 2997f0
 * by Dieter Baron and Thomas Klausner.
Packit 2997f0
 *
Packit 2997f0
 * Redistribution and use in source and binary forms, with or without
Packit 2997f0
 * modification, are permitted provided that the following conditions
Packit 2997f0
 * are met:
Packit 2997f0
 * 1. Redistributions of source code must retain the above copyright
Packit 2997f0
 *    notice, this list of conditions and the following disclaimer.
Packit 2997f0
 * 2. Redistributions in binary form must reproduce the above copyright
Packit 2997f0
 *    notice, this list of conditions and the following disclaimer in the
Packit 2997f0
 *    documentation and/or other materials provided with the distribution.
Packit 2997f0
 *
Packit 2997f0
 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
Packit 2997f0
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
Packit 2997f0
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
Packit 2997f0
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
Packit 2997f0
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Packit 2997f0
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Packit 2997f0
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Packit 2997f0
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Packit 2997f0
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Packit 2997f0
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Packit 2997f0
 * POSSIBILITY OF SUCH DAMAGE.
Packit 2997f0
 */