xref: /illumos-gate/usr/src/uts/common/zmod/mapfile (revision c9431fa1e59a88c2f0abf611f25b97af964449e5)
1*c9431fa1Sahl#
2*c9431fa1Sahl# CDDL HEADER START
3*c9431fa1Sahl#
4*c9431fa1Sahl# The contents of this file are subject to the terms of the
5*c9431fa1Sahl# Common Development and Distribution License (the "License").
6*c9431fa1Sahl# You may not use this file except in compliance with the License.
7*c9431fa1Sahl#
8*c9431fa1Sahl# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*c9431fa1Sahl# or http://www.opensolaris.org/os/licensing.
10*c9431fa1Sahl# See the License for the specific language governing permissions
11*c9431fa1Sahl# and limitations under the License.
12*c9431fa1Sahl#
13*c9431fa1Sahl# When distributing Covered Code, include this CDDL HEADER in each
14*c9431fa1Sahl# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*c9431fa1Sahl# If applicable, add the following below this CDDL HEADER, with the
16*c9431fa1Sahl# fields enclosed by brackets "[]" replaced with your own identifying
17*c9431fa1Sahl# information: Portions Copyright [yyyy] [name of copyright owner]
18*c9431fa1Sahl#
19*c9431fa1Sahl# CDDL HEADER END
20*c9431fa1Sahl#
21*c9431fa1Sahl
22*c9431fa1Sahl#
23*c9431fa1Sahl# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24*c9431fa1Sahl# Use is subject to license terms.
25*c9431fa1Sahl#
26*c9431fa1Sahl
27*c9431fa1Sahl# ident	"%Z%%M%	%I%	%E% SMI"
28*c9431fa1Sahl
29*c9431fa1Sahl{
30*c9431fa1Sahl	global:
31*c9431fa1Sahl		# public interfaces
32*c9431fa1Sahl		z_compress;
33*c9431fa1Sahl		z_compress_level;
34*c9431fa1Sahl		z_strerror;
35*c9431fa1Sahl		z_uncompress;
36*c9431fa1Sahl
37*c9431fa1Sahl		# private interfaces used by dboot
38*c9431fa1Sahl		z_inflate;
39*c9431fa1Sahl		z_inflateInit2_;
40*c9431fa1Sahl		z_inflateEnd;
41*c9431fa1Sahl		z_inflateReset;
42*c9431fa1Sahl	local:
43*c9431fa1Sahl		*;
44*c9431fa1Sahl};
45