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