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