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