pty library
[unix-history] / usr / src / libexec / telnetd / global.c
CommitLineData
ea139302
PB
1/*
2 * Copyright (c) 1989 Regents of the University of California.
3 * All rights reserved.
4 *
836fe169 5 * %sccs.include.redist.c%
ea139302
PB
6 */
7
8#ifndef lint
836fe169 9static char sccsid[] = "@(#)global.c 5.2 (Berkeley) %G%";
ea139302
PB
10#endif /* not lint */
11
12/*
13 * Allocate global variables. We do this
14 * by including the header file that defines
15 * them all as externs, but first we define
16 * the keyword "extern" to be nothing, so that
17 * we will actually allocate the space.
18 */
19
20#include "defs.h"
21#define extern
22#include "ext.h"