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