1*10d63b7dSRichard Lowe /*
2*10d63b7dSRichard Lowe  * CDDL HEADER START
3*10d63b7dSRichard Lowe  *
4*10d63b7dSRichard Lowe  * The contents of this file are subject to the terms of the
5*10d63b7dSRichard Lowe  * Common Development and Distribution License (the "License").
6*10d63b7dSRichard Lowe  * You may not use this file except in compliance with the License.
7*10d63b7dSRichard Lowe  *
8*10d63b7dSRichard Lowe  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*10d63b7dSRichard Lowe  * or http://www.opensolaris.org/os/licensing.
10*10d63b7dSRichard Lowe  * See the License for the specific language governing permissions
11*10d63b7dSRichard Lowe  * and limitations under the License.
12*10d63b7dSRichard Lowe  *
13*10d63b7dSRichard Lowe  * When distributing Covered Code, include this CDDL HEADER in each
14*10d63b7dSRichard Lowe  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*10d63b7dSRichard Lowe  * If applicable, add the following below this CDDL HEADER, with the
16*10d63b7dSRichard Lowe  * fields enclosed by brackets "[]" replaced with your own identifying
17*10d63b7dSRichard Lowe  * information: Portions Copyright [yyyy] [name of copyright owner]
18*10d63b7dSRichard Lowe  *
19*10d63b7dSRichard Lowe  * CDDL HEADER END
20*10d63b7dSRichard Lowe  */
21*10d63b7dSRichard Lowe /*
22*10d63b7dSRichard Lowe  * Copyright 1994 Sun Microsystems, Inc. All rights reserved.
23*10d63b7dSRichard Lowe  * Use is subject to license terms.
24*10d63b7dSRichard Lowe  */
25*10d63b7dSRichard Lowe 
26*10d63b7dSRichard Lowe #ifndef _REPORT_H_
27*10d63b7dSRichard Lowe #define _REPORT_H_
28*10d63b7dSRichard Lowe 
29*10d63b7dSRichard Lowe #include <stdio.h>
30*10d63b7dSRichard Lowe 
31*10d63b7dSRichard Lowe extern FILE	*get_report_file(void);
32*10d63b7dSRichard Lowe extern char	*get_target_being_reported_for(void);
33*10d63b7dSRichard Lowe extern void	report_dependency(const char *name);
34*10d63b7dSRichard Lowe extern int	file_lock(char *name, char *lockname, int *file_locked, int timeout);
35*10d63b7dSRichard Lowe 
36*10d63b7dSRichard Lowe #define SUNPRO_DEPENDENCIES "SUNPRO_DEPENDENCIES"
37*10d63b7dSRichard Lowe #define LD 	"LD"
38*10d63b7dSRichard Lowe #define COMP 	"COMP"
39*10d63b7dSRichard Lowe 
40*10d63b7dSRichard Lowe /*
41*10d63b7dSRichard Lowe  * These relate to Sun's ancient source control system that predated TeamWare,
42*10d63b7dSRichard Lowe  * named NSE.  They appear to be used regardless of its presence, however, and
43*10d63b7dSRichard Lowe  * so linger.
44*10d63b7dSRichard Lowe  */
45*10d63b7dSRichard Lowe #define NSE_DEPINFO 		".nse_depinfo"
46*10d63b7dSRichard Lowe #define NSE_DEPINFO_LOCK 	".nse_depinfo.lock"
47*10d63b7dSRichard Lowe 
48*10d63b7dSRichard Lowe #endif
49