1*25e8c5aaSvikram /*
2*25e8c5aaSvikram  * CDDL HEADER START
3*25e8c5aaSvikram  *
4*25e8c5aaSvikram  * The contents of this file are subject to the terms of the
5*25e8c5aaSvikram  * Common Development and Distribution License (the "License").
6*25e8c5aaSvikram  * You may not use this file except in compliance with the License.
7*25e8c5aaSvikram  *
8*25e8c5aaSvikram  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*25e8c5aaSvikram  * or http://www.opensolaris.org/os/licensing.
10*25e8c5aaSvikram  * See the License for the specific language governing permissions
11*25e8c5aaSvikram  * and limitations under the License.
12*25e8c5aaSvikram  *
13*25e8c5aaSvikram  * When distributing Covered Code, include this CDDL HEADER in each
14*25e8c5aaSvikram  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*25e8c5aaSvikram  * If applicable, add the following below this CDDL HEADER, with the
16*25e8c5aaSvikram  * fields enclosed by brackets "[]" replaced with your own identifying
17*25e8c5aaSvikram  * information: Portions Copyright [yyyy] [name of copyright owner]
18*25e8c5aaSvikram  *
19*25e8c5aaSvikram  * CDDL HEADER END
20*25e8c5aaSvikram  */
21*25e8c5aaSvikram /*
22*25e8c5aaSvikram  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23*25e8c5aaSvikram  * Use is subject to license terms.
24*25e8c5aaSvikram  */
25*25e8c5aaSvikram 
26*25e8c5aaSvikram #ifndef	_DEVICE_DUMP_H
27*25e8c5aaSvikram #define	_DEVICE_DUMP_H
28*25e8c5aaSvikram 
29*25e8c5aaSvikram #include "libcontract_impl.h"
30*25e8c5aaSvikram 
31*25e8c5aaSvikram #ifdef	__cplusplus
32*25e8c5aaSvikram extern "C" {
33*25e8c5aaSvikram #endif
34*25e8c5aaSvikram 
35*25e8c5aaSvikram extern void event_device(FILE *, ct_evthdl_t, int);
36*25e8c5aaSvikram 
37*25e8c5aaSvikram #ifdef	__cplusplus
38*25e8c5aaSvikram }
39*25e8c5aaSvikram #endif
40*25e8c5aaSvikram 
41*25e8c5aaSvikram #endif	/* _DEVICE_DUMP_H */
42