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