1/* $NetBSD$ */
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
12struct open_file files[SOPEN_MAX];
13