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