xref: /illumos-gate/usr/src/uts/common/zmod/mapfile (revision cd3e9333)
1c9431fa1Sahl#
2c9431fa1Sahl# CDDL HEADER START
3c9431fa1Sahl#
4c9431fa1Sahl# The contents of this file are subject to the terms of the
5c9431fa1Sahl# Common Development and Distribution License (the "License").
6c9431fa1Sahl# You may not use this file except in compliance with the License.
7c9431fa1Sahl#
8c9431fa1Sahl# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9c9431fa1Sahl# or http://www.opensolaris.org/os/licensing.
10c9431fa1Sahl# See the License for the specific language governing permissions
11c9431fa1Sahl# and limitations under the License.
12c9431fa1Sahl#
13c9431fa1Sahl# When distributing Covered Code, include this CDDL HEADER in each
14c9431fa1Sahl# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15c9431fa1Sahl# If applicable, add the following below this CDDL HEADER, with the
16c9431fa1Sahl# fields enclosed by brackets "[]" replaced with your own identifying
17c9431fa1Sahl# information: Portions Copyright [yyyy] [name of copyright owner]
18c9431fa1Sahl#
19c9431fa1Sahl# CDDL HEADER END
20c9431fa1Sahl#
21c9431fa1Sahl
22c9431fa1Sahl#
23*cd3e9333SAli Bahrami# Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24c9431fa1Sahl#
25c9431fa1Sahl
26bfed486aSAli Bahrami#
27bfed486aSAli Bahrami# MAPFILE HEADER START
28bfed486aSAli Bahrami#
29bfed486aSAli Bahrami# WARNING:  STOP NOW.  DO NOT MODIFY THIS FILE.
30bfed486aSAli Bahrami# Object versioning must comply with the rules detailed in
31bfed486aSAli Bahrami#
32bfed486aSAli Bahrami#	usr/src/lib/README.mapfiles
33bfed486aSAli Bahrami#
34bfed486aSAli Bahrami# You should not be making modifications here until you've read the most current
35bfed486aSAli Bahrami# copy of that file. If you need help, contact a gatekeeper for guidance.
36bfed486aSAli Bahrami#
37bfed486aSAli Bahrami# MAPFILE HEADER END
38bfed486aSAli Bahrami#
39c9431fa1Sahl
40*cd3e9333SAli Bahrami$mapfile_version 2
41*cd3e9333SAli Bahrami
42*cd3e9333SAli BahramiSYMBOL_SCOPE {
43c9431fa1Sahl	global:
44c9431fa1Sahl		# public interfaces
45c9431fa1Sahl		z_compress;
46c9431fa1Sahl		z_compress_level;
47c9431fa1Sahl		z_strerror;
48c9431fa1Sahl		z_uncompress;
49c9431fa1Sahl
50c9431fa1Sahl		# private interfaces used by dboot
51c9431fa1Sahl		z_inflate;
52c9431fa1Sahl		z_inflateInit2_;
53c9431fa1Sahl		z_inflateEnd;
54c9431fa1Sahl		z_inflateReset;
55c9431fa1Sahl	local:
56c9431fa1Sahl		*;
57c9431fa1Sahl};
58