1*38905Sborman /* 2*38905Sborman * Copyright (c) 1989 Regents of the University of California. 3*38905Sborman * All rights reserved. 4*38905Sborman * 5*38905Sborman * Redistribution and use in source and binary forms are permitted 6*38905Sborman * provided that the above copyright notice and this paragraph are 7*38905Sborman * duplicated in all such forms and that any documentation, 8*38905Sborman * advertising materials, and other materials related to such 9*38905Sborman * distribution and use acknowledge that the software was developed 10*38905Sborman * by the University of California, Berkeley. The name of the 11*38905Sborman * University may not be used to endorse or promote products derived 12*38905Sborman * from this software without specific prior written permission. 13*38905Sborman * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 14*38905Sborman * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 15*38905Sborman * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. 16*38905Sborman */ 17*38905Sborman 18*38905Sborman #ifndef lint 19*38905Sborman static char sccsid[] = "@(#)global.c 5.1 (Berkeley) 09/01/89"; 20*38905Sborman #endif /* not lint */ 21*38905Sborman 22*38905Sborman /* 23*38905Sborman * Allocate global variables. We do this 24*38905Sborman * by including the header file that defines 25*38905Sborman * them all as externs, but first we define 26*38905Sborman * the keyword "extern" to be nothing, so that 27*38905Sborman * we will actually allocate the space. 28*38905Sborman */ 29*38905Sborman 30*38905Sborman #include "defs.h" 31*38905Sborman #define extern 32*38905Sborman #include "ext.h" 33