autoconf.h revision 1.1
11.1Sisaki/* $NetBSD: autoconf.h,v 1.1 2009/01/17 09:20:46 isaki Exp $ */ 21.1Sisaki 31.1Sisaki/* 41.1Sisaki * Copyright (c) 2008 Tetsuya Isaki. All rights reserved. 51.1Sisaki * 61.1Sisaki * Redistribution and use in source and binary forms, with or without 71.1Sisaki * modification, are permitted provided that the following conditions 81.1Sisaki * are met: 91.1Sisaki * 1. Redistributions of source code must retain the above copyright 101.1Sisaki * notice, this list of conditions and the following disclaimer. 111.1Sisaki * 2. Redistributions in binary form must reproduce the above copyright 121.1Sisaki * notice, this list of conditions and the following disclaimer in the 131.1Sisaki * documentation and/or other materials provided with the distribution. 141.1Sisaki * 3. The name of the author may not be used to endorse or promote products 151.1Sisaki * derived from this software without specific prior written permission 161.1Sisaki * 171.1Sisaki * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 181.1Sisaki * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 191.1Sisaki * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 201.1Sisaki * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 211.1Sisaki * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 221.1Sisaki * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 231.1Sisaki * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 241.1Sisaki * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 251.1Sisaki * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 261.1Sisaki * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 271.1Sisaki * SUCH DAMAGE. 281.1Sisaki */ 291.1Sisaki 301.1Sisaki#ifndef _X68K_AUTOCONF_H_ 311.1Sisaki#define _X68K_AUTOCONF_H_ 321.1Sisaki 331.1Sisakiextern void config_console(void); 341.1Sisakiextern void mfp_config_console(void); 351.1Sisakiextern void grf_config_console(void); 361.1Sisakiextern void ite_config_console(void); 371.1Sisaki 381.1Sisakiextern int x68k_realconfig; /* XXX should be removed ? */ 391.1Sisaki 401.1Sisakistruct grf_softc; 411.1Sisakiextern struct grf_softc congrf; /* XXX Hmm... */ 421.1Sisaki 431.1Sisaki#endif /* !_X68K_AUTOCONF_H_ */ 44