supply instance to 2nd at_wini instance.
[minix3.git] / commands / bc / global.c
blob1e7dc1cf802873d8eba02d65b4d519e9db08249e
1 /* global.c: This defines the global variables. */
3 /* This file is part of bc written for MINIX.
4 Copyright (C) 1991, 1992 Free Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License , or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 You may contact the author by:
21 e-mail: phil@cs.wwu.edu
22 us-mail: Philip A. Nelson
23 Computer Science Department, 9062
24 Western Washington University
25 Bellingham, WA 98226-9062
27 *************************************************************************/
29 #include "bcdefs.h"
31 /* Since we want to define them here, we use the following define. */
32 #undef EXTERN
33 #define EXTERN
35 /* Define all the global variables for bc. */
36 #include "global.h"
38 #ifndef BC_MATH_FILE
39 CONST char libmath[] =
40 #include "math.h"
42 #endif