extern.h revision 1.4
11.4Scgd/*	$NetBSD: extern.h,v 1.4 1995/03/21 09:04:09 cgd Exp $	*/
21.4Scgd
31.1Sglass/*-
41.3Smycroft * Copyright (c) 1991, 1993, 1994
51.3Smycroft *	The Regents of the University of California.  All rights reserved.
61.1Sglass *
71.1Sglass * This code is derived from software contributed to Berkeley by
81.1Sglass * Keith Muller of the University of California, San Diego and Lance
91.1Sglass * Visser of Convex Computer Corporation.
101.1Sglass *
111.1Sglass * Redistribution and use in source and binary forms, with or without
121.1Sglass * modification, are permitted provided that the following conditions
131.1Sglass * are met:
141.1Sglass * 1. Redistributions of source code must retain the above copyright
151.1Sglass *    notice, this list of conditions and the following disclaimer.
161.1Sglass * 2. Redistributions in binary form must reproduce the above copyright
171.1Sglass *    notice, this list of conditions and the following disclaimer in the
181.1Sglass *    documentation and/or other materials provided with the distribution.
191.1Sglass * 3. All advertising materials mentioning features or use of this software
201.1Sglass *    must display the following acknowledgement:
211.1Sglass *	This product includes software developed by the University of
221.1Sglass *	California, Berkeley and its contributors.
231.1Sglass * 4. Neither the name of the University nor the names of its contributors
241.1Sglass *    may be used to endorse or promote products derived from this software
251.1Sglass *    without specific prior written permission.
261.1Sglass *
271.1Sglass * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
281.1Sglass * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
291.1Sglass * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
301.1Sglass * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
311.1Sglass * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
321.1Sglass * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
331.1Sglass * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
341.1Sglass * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
351.1Sglass * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
361.1Sglass * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
371.1Sglass * SUCH DAMAGE.
381.1Sglass *
391.4Scgd *	@(#)extern.h	8.3 (Berkeley) 4/2/94
401.1Sglass */
411.1Sglass
421.1Sglass#include <sys/cdefs.h>
431.1Sglass
441.1Sglassvoid block __P((void));
451.1Sglassvoid block_close __P((void));
461.1Sglassvoid dd_out __P((int));
471.1Sglassvoid def __P((void));
481.1Sglassvoid def_close __P((void));
491.1Sglassvoid jcl __P((char **));
501.1Sglassvoid pos_in __P((void));
511.1Sglassvoid pos_out __P((void));
521.3Smycroftvoid summary __P((void));
531.3Smycroftvoid summaryx __P((int));
541.1Sglassvoid terminate __P((int));
551.1Sglassvoid unblock __P((void));
561.1Sglassvoid unblock_close __P((void));
571.1Sglass
581.1Sglassextern IO in, out;
591.1Sglassextern STAT st;
601.1Sglassextern void (*cfunc)();
611.1Sglassextern u_long cpy_cnt;
621.1Sglassextern u_int cbsz;
631.1Sglassextern u_int ddflags;
641.1Sglassextern u_int files_cnt;
651.1Sglassextern u_char *ctab;
661.1Sglassextern u_char a2e_32V[], a2e_POSIX[], a2ibm_32V[], a2ibm_POSIX[], e2a_32V[];
671.1Sglassextern u_char e2a_POSIX[], l2u[], u2l[];
68