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