xref: /original-bsd/libexec/telnetd/global.c (revision c3e32dec)
1 /*
2  * Copyright (c) 1989, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)global.c	8.1 (Berkeley) 06/04/93";
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"
23