xref: /csrg-svn/lib/libc/stdio/glue.h (revision 46111)
1*46111Sbostic /*-
2*46111Sbostic  * Copyright (c) 1990 The Regents of the University of California.
3*46111Sbostic  * All rights reserved.
4*46111Sbostic  *
5*46111Sbostic  * This code is derived from software contributed to Berkeley by
6*46111Sbostic  * Chris Torek.
7*46111Sbostic  *
8*46111Sbostic  * %sccs.include.redist.c%
9*46111Sbostic  *
10*46111Sbostic  *	@(#)glue.h	5.1 (Berkeley) 01/20/91
11*46111Sbostic  */
12*46111Sbostic 
13*46111Sbostic /*
14*46111Sbostic  * The first few FILEs are statically allocated; others are dynamically
15*46111Sbostic  * allocated and linked in via this glue structure.
16*46111Sbostic  */
17*46111Sbostic struct glue {
18*46111Sbostic 	struct	glue *next;
19*46111Sbostic 	int	niobs;
20*46111Sbostic 	FILE	*iobs;
21*46111Sbostic } __sglue;
22