xref: /netbsd-src/sys/lib/libsa/files.c (revision 53b02e147d4ed531c0d2a5ca9b3e8026ba3e99b5)
1 /* $NetBSD: files.c,v 1.1 2002/03/15 13:23:34 simonb Exp $ */
2 
3 /*
4  *	files.c:
5  *
6  *	libsa file table.  separate from other global variables so that
7  *	all of those don't need to be linked in just to use open, et al.
8  */
9 
10 #include "stand.h"
11 
12 struct open_file files[SOPEN_MAX];
13