|
| 1 | +For the files wingetopt.c wingetopt.h downloaded from https://github.com/alex85k/wingetopt |
| 2 | + |
| 3 | +/* |
| 4 | + * Copyright (c) 2002 Todd C. Miller < [email protected]> |
| 5 | + * |
| 6 | + * Permission to use, copy, modify, and distribute this software for any |
| 7 | + * purpose with or without fee is hereby granted, provided that the above |
| 8 | + * copyright notice and this permission notice appear in all copies. |
| 9 | + * |
| 10 | + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 11 | + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 12 | + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 13 | + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 14 | + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 15 | + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 16 | + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 17 | + * |
| 18 | + * Sponsored in part by the Defense Advanced Research Projects |
| 19 | + * Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 20 | + * Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 21 | + */ |
| 22 | +/*- |
| 23 | + * Copyright (c) 2000 The NetBSD Foundation, Inc. |
| 24 | + * All rights reserved. |
| 25 | + * |
| 26 | + * This code is derived from software contributed to The NetBSD Foundation |
| 27 | + * by Dieter Baron and Thomas Klausner. |
| 28 | + * |
| 29 | + * Redistribution and use in source and binary forms, with or without |
| 30 | + * modification, are permitted provided that the following conditions |
| 31 | + * are met: |
| 32 | + * 1. Redistributions of source code must retain the above copyright |
| 33 | + * notice, this list of conditions and the following disclaimer. |
| 34 | + * 2. Redistributions in binary form must reproduce the above copyright |
| 35 | + * notice, this list of conditions and the following disclaimer in the |
| 36 | + * documentation and/or other materials provided with the distribution. |
| 37 | + * |
| 38 | + * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 39 | + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 40 | + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 41 | + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 42 | + * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 43 | + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 44 | + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 45 | + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 46 | + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 47 | + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 48 | + * POSSIBILITY OF SUCH DAMAGE. |
| 49 | + */ |
0 commit comments