xref: /original-bsd/lib/libc/stdio/glue.h (revision 79dae5a4)
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * 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	5.1 (Berkeley) 01/20/91
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