1*53e202c1Schristos /* $NetBSD: debug.h,v 1.1 2007/01/14 04:36:13 christos Exp $ */ 2*53e202c1Schristos 3*53e202c1Schristos /*- 4*53e202c1Schristos * Copyright (c) 1999 Takanori Watanabe 5*53e202c1Schristos * Copyright (c) 1999, 2000 Mitsuru IWASAKI <iwasaki@FreeBSD.org> 6*53e202c1Schristos * All rights reserved. 7*53e202c1Schristos * 8*53e202c1Schristos * Redistribution and use in source and binary forms, with or without 9*53e202c1Schristos * modification, are permitted provided that the following conditions 10*53e202c1Schristos * are met: 11*53e202c1Schristos * 1. Redistributions of source code must retain the above copyright 12*53e202c1Schristos * notice, this list of conditions and the following disclaimer. 13*53e202c1Schristos * 2. Redistributions in binary form must reproduce the above copyright 14*53e202c1Schristos * notice, this list of conditions and the following disclaimer in the 15*53e202c1Schristos * documentation and/or other materials provided with the distribution. 16*53e202c1Schristos * 17*53e202c1Schristos * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 18*53e202c1Schristos * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19*53e202c1Schristos * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20*53e202c1Schristos * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 21*53e202c1Schristos * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22*53e202c1Schristos * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23*53e202c1Schristos * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24*53e202c1Schristos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25*53e202c1Schristos * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26*53e202c1Schristos * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27*53e202c1Schristos * SUCH DAMAGE. 28*53e202c1Schristos * 29*53e202c1Schristos * Id: debug.h,v 1.8 2000/08/09 14:47:57 iwasaki Exp 30*53e202c1Schristos * $FreeBSD: src/usr.sbin/acpi/amldb/debug.h,v 1.1.1.1 2000/08/31 14:45:00 iwasaki Exp $ 31*53e202c1Schristos */ 32*53e202c1Schristos 33*53e202c1Schristos #ifndef _DEBUG_H_ 34*53e202c1Schristos #define _DEBUG_H_ 35*53e202c1Schristos 36*53e202c1Schristos void aml_dbgr(struct aml_environ *, struct aml_environ *); 37*53e202c1Schristos 38*53e202c1Schristos #endif /* !_DEBUG_H_ */ 39