xref: /illumos-gate/usr/src/cmd/make/include/mksh/macro.h (revision e7afc443)
110d63b7dSRichard Lowe /*
210d63b7dSRichard Lowe  * CDDL HEADER START
310d63b7dSRichard Lowe  *
410d63b7dSRichard Lowe  * The contents of this file are subject to the terms of the
510d63b7dSRichard Lowe  * Common Development and Distribution License (the "License").
610d63b7dSRichard Lowe  * You may not use this file except in compliance with the License.
710d63b7dSRichard Lowe  *
810d63b7dSRichard Lowe  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
910d63b7dSRichard Lowe  * or http://www.opensolaris.org/os/licensing.
1010d63b7dSRichard Lowe  * See the License for the specific language governing permissions
1110d63b7dSRichard Lowe  * and limitations under the License.
1210d63b7dSRichard Lowe  *
1310d63b7dSRichard Lowe  * When distributing Covered Code, include this CDDL HEADER in each
1410d63b7dSRichard Lowe  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1510d63b7dSRichard Lowe  * If applicable, add the following below this CDDL HEADER, with the
1610d63b7dSRichard Lowe  * fields enclosed by brackets "[]" replaced with your own identifying
1710d63b7dSRichard Lowe  * information: Portions Copyright [yyyy] [name of copyright owner]
1810d63b7dSRichard Lowe  *
1910d63b7dSRichard Lowe  * CDDL HEADER END
2010d63b7dSRichard Lowe  */
2110d63b7dSRichard Lowe /*
2210d63b7dSRichard Lowe  * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
2310d63b7dSRichard Lowe  * Use is subject to license terms.
2410d63b7dSRichard Lowe  */
2510d63b7dSRichard Lowe 
26*e7afc443SToomas Soome #ifndef _MKSH_MACRO_H
27*e7afc443SToomas Soome #define	_MKSH_MACRO_H
28*e7afc443SToomas Soome 
2910d63b7dSRichard Lowe #include <mksh/defs.h>
3010d63b7dSRichard Lowe 
31*e7afc443SToomas Soome extern void	expand_macro(Source, String, wchar_t *, Boolean);
32*e7afc443SToomas Soome extern void	expand_value(Name, String, Boolean);
33*e7afc443SToomas Soome extern Name	getvar(Name);
3410d63b7dSRichard Lowe 
35*e7afc443SToomas Soome extern Property	setvar_daemon(Name, Name, Boolean, Daemon, Boolean, short);
3610d63b7dSRichard Lowe 
37*e7afc443SToomas Soome #endif /* _MKSH_MACRO_H */
38