xref: /titanic_52/usr/src/cmd/sh/mapfile-intf (revision bfed486ad8de8b8ebc6345a8e10accae08bf2f45)
124da5b34Srie#
224da5b34Srie# CDDL HEADER START
324da5b34Srie#
424da5b34Srie# The contents of this file are subject to the terms of the
524da5b34Srie# Common Development and Distribution License (the "License").
624da5b34Srie# You may not use this file except in compliance with the License.
724da5b34Srie#
824da5b34Srie# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
924da5b34Srie# or http://www.opensolaris.org/os/licensing.
1024da5b34Srie# See the License for the specific language governing permissions
1124da5b34Srie# and limitations under the License.
1224da5b34Srie#
1324da5b34Srie# When distributing Covered Code, include this CDDL HEADER in each
1424da5b34Srie# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1524da5b34Srie# If applicable, add the following below this CDDL HEADER, with the
1624da5b34Srie# fields enclosed by brackets "[]" replaced with your own identifying
1724da5b34Srie# information: Portions Copyright [yyyy] [name of copyright owner]
1824da5b34Srie#
1924da5b34Srie# CDDL HEADER END
2024da5b34Srie#
2124da5b34Srie
2224da5b34Srie#
23*bfed486aSAli Bahrami# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
2424da5b34Srie# Use is subject to license terms.
2524da5b34Srie#
26*bfed486aSAli Bahrami
27*bfed486aSAli Bahrami#
28*bfed486aSAli Bahrami# MAPFILE HEADER START
29*bfed486aSAli Bahrami#
30*bfed486aSAli Bahrami# WARNING:  STOP NOW.  DO NOT MODIFY THIS FILE.
31*bfed486aSAli Bahrami# Object versioning must comply with the rules detailed in
32*bfed486aSAli Bahrami#
33*bfed486aSAli Bahrami#	usr/src/lib/README.mapfiles
34*bfed486aSAli Bahrami#
35*bfed486aSAli Bahrami# You should not be making modifications here until you've read the most current
36*bfed486aSAli Bahrami# copy of that file. If you need help, contact a gatekeeper for guidance.
37*bfed486aSAli Bahrami#
38*bfed486aSAli Bahrami# MAPFILE HEADER END
3924da5b34Srie#
4024da5b34Srie
4124da5b34Srie# The shell has a name clash (exp, hcreate).  Demote everything to local
4224da5b34Srie# besides the malloc family that must be exported.
4324da5b34Srie{
4424da5b34Srie	global:
4524da5b34Srie		free;
4624da5b34Srie		malloc;
4724da5b34Srie		realloc;
4824da5b34Srie};
49