1 #ifndef _MKSH_MKSH_H
2 #define _MKSH_MKSH_H
3 /*
4  * CDDL HEADER START
5  *
6  * This file and its contents are supplied under the terms of the
7  * Common Development and Distribution License ("CDDL"), version 1.0.
8  * You may use this file only in accordance with the terms of version
9  * 1.0 of the CDDL.
10  *
11  * A full copy of the text of the CDDL should have accompanied this
12  * source.  A copy of the CDDL is also available via the Internet at
13  * http://www.opensource.org/licenses/cddl1.txt
14  * See the License for the specific language governing permissions
15  * and limitations under the License.
16  *
17  * When distributing Covered Code, include this CDDL HEADER in each
18  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
19  * If applicable, add the following below this CDDL HEADER, with the
20  * fields enclosed by brackets "[]" replaced with your own identifying
21  * information: Portions Copyright [yyyy] [name of copyright owner]
22  *
23  * CDDL HEADER END
24  */
25 /*
26  * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
27  * Use is subject to license terms.
28  */
29 /*
30  * @(#)mksh.h 1.7 06/12/12
31  */
32 
33 #pragma	ident	"@(#)mksh.h	1.7	06/12/12"
34 
35 /*
36  * Copyright 2017 J. Schilling
37  *
38  * @(#)mksh.h	1.4 21/08/16 2017 J. Schilling
39  */
40 
41 /*
42  * Included files
43  */
44 #if defined(DISTRIBUTED) || defined(MAKETOOL) /* tolik */
45 #	include <dm/Avo_DmakeCommand.h>
46 #endif
47 
48 #include <mksh/defs.h>
49 
50 #if defined(DISTRIBUTED) || defined(MAKETOOL) /* tolik */
51 
52 extern int	do_job(Avo_DmakeCommand *cmd_list[], char *env_list[], char *stdout_file, char *stderr_file, char *cwd, char *cnwd, int ignore, int silent, pathpt vroot_path, char *shell, int nice_prio);
53 
54 #endif /* TEAMWARE_MAKE_CMN */
55 
56 #endif
57