138905Sborman /* 2*61451Sbostic * Copyright (c) 1989, 1993 3*61451Sbostic * The Regents of the University of California. All rights reserved. 438905Sborman * 542673Sbostic * %sccs.include.redist.c% 638905Sborman */ 738905Sborman 838905Sborman #ifndef lint 9*61451Sbostic static char sccsid[] = "@(#)global.c 8.1 (Berkeley) 06/04/93"; 1038905Sborman #endif /* not lint */ 1138905Sborman 1238905Sborman /* 1338905Sborman * Allocate global variables. We do this 1438905Sborman * by including the header file that defines 1538905Sborman * them all as externs, but first we define 1638905Sborman * the keyword "extern" to be nothing, so that 1738905Sborman * we will actually allocate the space. 1838905Sborman */ 1938905Sborman 2038905Sborman #include "defs.h" 2138905Sborman #define extern 2238905Sborman #include "ext.h" 23