1 1.1 phil /* $NetBSD: global.c,v 1.1 2017/04/10 02:28:23 phil Exp $ */ 2 1.1 phil 3 1.1 phil /* 4 1.1 phil * Copyright (C) 1991-1994, 1997, 2006, 2008, 2012-2017 Free Software Foundation, Inc. 5 1.1 phil * Copyright (C) 2016-2017 Philip A. Nelson. 6 1.1 phil * All rights reserved. 7 1.1 phil * 8 1.1 phil * Redistribution and use in source and binary forms, with or without 9 1.1 phil * modification, are permitted provided that the following conditions 10 1.1 phil * are met: 11 1.1 phil * 12 1.1 phil * 1. Redistributions of source code must retain the above copyright 13 1.1 phil * notice, this list of conditions and the following disclaimer. 14 1.1 phil * 2. Redistributions in binary form must reproduce the above copyright 15 1.1 phil * notice, this list of conditions and the following disclaimer in the 16 1.1 phil * documentation and/or other materials provided with the distribution. 17 1.1 phil * 3. The names Philip A. Nelson and Free Software Foundation may not be 18 1.1 phil * used to endorse or promote products derived from this software 19 1.1 phil * without specific prior written permission. 20 1.1 phil * 21 1.1 phil * THIS SOFTWARE IS PROVIDED BY PHILIP A. NELSON ``AS IS'' AND ANY EXPRESS OR 22 1.1 phil * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 23 1.1 phil * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 24 1.1 phil * IN NO EVENT SHALL PHILIP A. NELSON OR THE FREE SOFTWARE FOUNDATION BE 25 1.1 phil * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 26 1.1 phil * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 27 1.1 phil * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 28 1.1 phil * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 29 1.1 phil * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 30 1.1 phil * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 31 1.1 phil * THE POSSIBILITY OF SUCH DAMAGE. 32 1.1 phil */ 33 1.1 phil 34 1.1 phil /* global.c: This defines the global variables. */ 35 1.1 phil 36 1.1 phil /* We are global.c ... so define and initialize variables here. */ 37 1.1 phil 38 1.1 phil #define _GLOBAL_C 39 1.1 phil 40 1.1 phil #include "bcdefs.h" 41 1.1 phil 42 1.1 phil CONST char *libmath[] = 43 1.1 phil #include "libmath.h" 44 1.1 phil ; 45