146111Sbostic /*- 2*61180Sbostic * Copyright (c) 1990, 1993 3*61180Sbostic * The Regents of the University of California. All rights reserved. 446111Sbostic * 546111Sbostic * This code is derived from software contributed to Berkeley by 646111Sbostic * Chris Torek. 746111Sbostic * 846111Sbostic * %sccs.include.redist.c% 946111Sbostic * 10*61180Sbostic * @(#)glue.h 8.1 (Berkeley) 06/04/93 1146111Sbostic */ 1246111Sbostic 1346111Sbostic /* 1446111Sbostic * The first few FILEs are statically allocated; others are dynamically 1546111Sbostic * allocated and linked in via this glue structure. 1646111Sbostic */ 1746111Sbostic struct glue { 1846111Sbostic struct glue *next; 1946111Sbostic int niobs; 2046111Sbostic FILE *iobs; 2146111Sbostic } __sglue; 22