1*753d2d2eSraf /*
2*753d2d2eSraf  * CDDL HEADER START
3*753d2d2eSraf  *
4*753d2d2eSraf  * The contents of this file are subject to the terms of the
5*753d2d2eSraf  * Common Development and Distribution License, Version 1.0 only
6*753d2d2eSraf  * (the "License").  You may not use this file except in compliance
7*753d2d2eSraf  * with the License.
8*753d2d2eSraf  *
9*753d2d2eSraf  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*753d2d2eSraf  * or http://www.opensolaris.org/os/licensing.
11*753d2d2eSraf  * See the License for the specific language governing permissions
12*753d2d2eSraf  * and limitations under the License.
13*753d2d2eSraf  *
14*753d2d2eSraf  * When distributing Covered Code, include this CDDL HEADER in each
15*753d2d2eSraf  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*753d2d2eSraf  * If applicable, add the following below this CDDL HEADER, with the
17*753d2d2eSraf  * fields enclosed by brackets "[]" replaced with your own identifying
18*753d2d2eSraf  * information: Portions Copyright [yyyy] [name of copyright owner]
19*753d2d2eSraf  *
20*753d2d2eSraf  * CDDL HEADER END
21*753d2d2eSraf  */
22*753d2d2eSraf /*
23*753d2d2eSraf  * Copyright (c) 1997-1999 by Sun Microsystems, Inc.
24*753d2d2eSraf  * All rights reserved.
25*753d2d2eSraf  */
26*753d2d2eSraf 
27*753d2d2eSraf #ifndef _IO_H
28*753d2d2eSraf #define	_IO_H
29*753d2d2eSraf 
30*753d2d2eSraf #ifdef	__cplusplus
31*753d2d2eSraf extern "C" {
32*753d2d2eSraf #endif
33*753d2d2eSraf 
34*753d2d2eSraf extern FILE *Bodyfp;
35*753d2d2eSraf extern FILE *Headfp;
36*753d2d2eSraf extern FILE *Mapfp;
37*753d2d2eSraf 
38*753d2d2eSraf extern void explain_fopen_failure(int, char *);
39*753d2d2eSraf extern void explain_fclose_failure(int, char *);
40*753d2d2eSraf 
41*753d2d2eSraf extern int open_code_file(void);
42*753d2d2eSraf extern int commit_code_file(void);
43*753d2d2eSraf 
44*753d2d2eSraf #ifdef	__cplusplus
45*753d2d2eSraf }
46*753d2d2eSraf #endif
47*753d2d2eSraf 
48*753d2d2eSraf #endif	/* _IO_H */
49