NetBSD/sys/lib/libsa/files.c
simonb f28e18332c Move files[] from globals.c to its own file. Including all of globals.o
breaks the size limit for at least the pmax bootblocks.

Fixes PR port-pmax/15924 from Gregory McGarry.
2002-03-15 13:23:34 +00:00

13 lines
276 B
C

/* $NetBSD: files.c,v 1.1 2002/03/15 13:23:34 simonb Exp $ */
/*
* files.c:
*
* libsa file table. separate from other global variables so that
* all of those don't need to be linked in just to use open, et al.
*/
#include "stand.h"
struct open_file files[SOPEN_MAX];