00001 #ifndef _TOKE_TOKE_H 00002 #define _TOKE_TOKE_H 00003 00004 /* 00005 * OpenBIOS - free your system! 00006 * ( FCode tokenizer ) 00007 * 00008 * toke.h - tokenizer base macros. 00009 * 00010 * This program is part of a free implementation of the IEEE 1275-1994 00011 * Standard for Boot (Initialization Configuration) Firmware. 00012 * 00013 * Copyright (C) 2001-2005 Stefan Reinauer, <stepan@openbios.org> 00014 * 00015 * This program is free software; you can redistribute it and/or modify 00016 * it under the terms of the GNU General Public License as published by 00017 * the Free Software Foundation; version 2 of the License. 00018 * 00019 * This program is distributed in the hope that it will be useful, 00020 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00022 * GNU General Public License for more details. 00023 * 00024 * You should have received a copy of the GNU General Public License 00025 * along with this program; if not, write to the Free Software 00026 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA 00027 * 00028 */ 00029 00030 /* ************************************************************************** 00031 * Modifications made in 2005 by IBM Corporation 00032 * (C) Copyright 2005 IBM Corporation. All Rights Reserved. 00033 * Modifications Author: David L. Paktor dlpaktor@us.ibm.com 00034 **************************************************************************** */ 00035 00036 00037 #include "types.h" 00038 00039 00040 /* ************************************************************************** * 00041 * 00042 * Global Variables Exported 00043 * 00044 **************************************************************************** */ 00045 00046 extern bool verbose; 00047 extern bool noerrors; 00048 extern bool fload_list; 00049 extern bool dependency_list; 00050 00051 #endif /* _TOKE_TOKE_H */