mapfile-vers revision 8744:03d5725cda56
1122507Strhodes#
2122507Strhodes# CDDL HEADER START
3122507Strhodes#
4122507Strhodes# The contents of this file are subject to the terms of the
5122507Strhodes# Common Development and Distribution License (the "License").
6122507Strhodes# You may not use this file except in compliance with the License.
7122507Strhodes#
8122507Strhodes# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9122507Strhodes# or http://www.opensolaris.org/os/licensing.
10122507Strhodes# See the License for the specific language governing permissions
11122507Strhodes# and limitations under the License.
12122507Strhodes#
13122507Strhodes# When distributing Covered Code, include this CDDL HEADER in each
14122507Strhodes# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15122507Strhodes# If applicable, add the following below this CDDL HEADER, with the
16122507Strhodes# fields enclosed by brackets "[]" replaced with your own identifying
17122507Strhodes# information: Portions Copyright [yyyy] [name of copyright owner]
18122507Strhodes#
19122507Strhodes# CDDL HEADER END
20122507Strhodes#
21122507Strhodes
22122507Strhodes#
23122507Strhodes# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24122507Strhodes# Use is subject to license terms.
25122507Strhodes#
26122507Strhodes
27122507Strhodes#
28196952Strasz# MAPFILE HEADER START
29122507Strhodes#
30122507Strhodes# WARNING:  STOP NOW.  DO NOT MODIFY THIS FILE.
31122507Strhodes# Object versioning must comply with the rules detailed in
32122507Strhodes#
33122507Strhodes#	usr/src/lib/README.mapfiles
34122507Strhodes#
35159719Sbrueffer# You should not be making modifications here until you've read the most current
36159719Sbrueffer# copy of that file. If you need help, contact a gatekeeper for guidance.
37159719Sbrueffer#
38159719Sbrueffer# MAPFILE HEADER END
39159719Sbrueffer#
40159719Sbrueffer
41159719SbruefferSUNWprivate_1.1 {
42159719Sbrueffer    global:
43159719Sbrueffer	sh_bltin_tree;
44159719Sbrueffer	sh_subfork;
45159719Sbrueffer	sh_init;
46159719Sbrueffer	sh_reinit;
47159719Sbrueffer	sh_eval;
48159719Sbrueffer	sh_delay;
49159719Sbrueffer	sh_parse;
50122507Strhodes	sh_tdump;
51122507Strhodes	sh_trap;
52122507Strhodes	sh_fun;
53122507Strhodes	sh_funscope;
54122507Strhodes	sh_iogetiop;
55122507Strhodes	sh_main;
56122507Strhodes	sh_menu;
57122507Strhodes	sh_addbuiltin;
58122507Strhodes	sh_fmtq;
59122507Strhodes	sh_fmtqf;
60122507Strhodes	sh_strnum;
61122507Strhodes	sh_access;
62122507Strhodes	sh_close;
63131349Sru	sh_dup;
64122507Strhodes	sh_exit;
65122507Strhodes	sh_fcntl;
66122507Strhodes	sh_getinterp;
67122521Shmp	sh_open;
68122507Strhodes	sh_pathopen;
69122507Strhodes	sh_read;
70122507Strhodes	sh_write;
71122507Strhodes	sh_seek;
72122507Strhodes	sh_pipe;
73122507Strhodes	sh_waitnotify;
74122507Strhodes	sh_getscope;
75131349Sru	sh_setscope;
76131349Sru	sh_sigcheck;
77131349Sru	sh_isoption;
78133336Ssimon	sh_onoption;
79133336Ssimon	sh_offoption;
80133336Ssimon	sh_waitsafe;
81133336Ssimon	sh_exec;
82133336Ssimon	sh_getliblist;
83133336Ssimon	
84133336Ssimon	nv_setarray;
85133336Ssimon	nv_associative;
86133336Ssimon	nv_aindex;
87133336Ssimon	nv_nextsub;
88133336Ssimon	nv_getsub;
89133336Ssimon	nv_putsub;
90133336Ssimon	nv_opensub;
91133336Ssimon	nv_adddisc;
92163995Smaxim	nv_clone;
93163995Smaxim	nv_close;
94133336Ssimon	nv_context;
95196701Strasz	nv_create;
96196701Strasz	nv_dict;
97196701Strasz	nv_getn;
98196952Strasz	nv_getnum;
99196952Strasz	nv_getv;
100196701Strasz	nv_getval;
101122507Strhodes	nv_hasdisc;
102122507Strhodes	nv_isnull;
103122507Strhodes	nv_lastdict;
104122507Strhodes	nv_newattr;
105122507Strhodes	nv_open;
106122507Strhodes	nv_putval;
107122507Strhodes	nv_putv;
108122507Strhodes	nv_scan;
109122507Strhodes	nv_setdisc;
110122507Strhodes	nv_setref;
111122507Strhodes	nv_settype;
112122507Strhodes	nv_setvec;
113122507Strhodes	nv_setvtree;
114122507Strhodes	nv_setsize;
115122521Shmp	nv_disc;
116122507Strhodes	nv_unset;
117122507Strhodes	nv_search;
118122507Strhodes	nv_name;
119122507Strhodes	nv_discfun;
120122507Strhodes
121122507Strhodes	# semi-private, needed for shcomp
122122507Strhodes	sh;
123122507Strhodes	e_dict;
124122507Strhodes
125122507Strhodes    local:
126122507Strhodes	*;
127122507Strhodes};
128122507Strhodes
129122507Strhodes# Builtin shell commands
130122507Strhodes# (see libshell/common/include/builtins.h)
131122507Strhodes# Note: We have to export all the |b_*()| symbols that the "builtin" command
132122507Strhodes# can load builtins which are not enabled by the default OS/Net configuration.
133122507StrhodesSUNWprivate_1.1 {
134122507Strhodes    global:
135122507Strhodes	B_echo;
136122507Strhodes	B_login;
137122507Strhodes	b_alarm;
138122507Strhodes	b_alias;
139122507Strhodes	b_bg;
140122507Strhodes	b_break;
141122507Strhodes	b_builtin;
142122507Strhodes	b_cd;
143122507Strhodes	b_close;
144122507Strhodes	b_command;
145122507Strhodes	b_dot_cmd;
146122507Strhodes	b_dup;
147122507Strhodes	b_eval;
148122507Strhodes	b_exec;
149122507Strhodes	b_false;
150122507Strhodes	b_getopts;
151122507Strhodes	b_hist;
152122507Strhodes	b_jobs;
153122507Strhodes	b_kill;
154122507Strhodes	b_let;
155122507Strhodes	b_open;
156122507Strhodes	b_poll;
157122507Strhodes	b_print;
158122507Strhodes	b_printf;
159122507Strhodes	b_pwd;
160122507Strhodes	b_read;
161122507Strhodes	b_readonly;
162122507Strhodes	b_return;
163122507Strhodes	b_rewind;
164122507Strhodes	b_set;
165122507Strhodes	b_shift;
166122521Shmp	b_sleep;
167122507Strhodes	b_stat;
168122507Strhodes	b_test;
169122507Strhodes	b_tmpfile;
170122507Strhodes	b_trap;
171122507Strhodes	b_true;
172122507Strhodes	b_typeset;
173122507Strhodes	b_ulimit;
174122507Strhodes	b_umask;
175122507Strhodes	b_unalias;
176122507Strhodes	b_unset;
177122507Strhodes	b_vpath;
178122507Strhodes	b_wait;
179122507Strhodes	b_whence;	
180122507Strhodes    local:
181122507Strhodes	*;
182122507Strhodes};
183122507Strhodes