xref: /netbsd-src/sys/lib/libsa/files.c (revision b2c35e17b976cf7ccd7250c86c6f5e95090ed636)
1 /* $NetBSD: files.c,v 1.2 2022/04/24 06:52:59 mlelstv 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 const char *fsmod = NULL;	/* file system module name to load */
14