date and time created 91/03/06 18:09:53 by bostic
[unix-history] / usr / src / lib / libc / stdio / glue.h
CommitLineData
c9be6cfe
KB
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) %G%
11 */
12
13/*
14 * The first few FILEs are statically allocated; others are dynamically
15 * allocated and linked in via this glue structure.
16 */
17struct glue {
18 struct glue *next;
19 int niobs;
20 FILE *iobs;
21} __sglue;