1*56b23fbbSmlelstv /* $NetBSD: files.c,v 1.2 2022/04/24 06:52:59 mlelstv Exp $ */ 2f28e1833Ssimonb 3f28e1833Ssimonb /* 4f28e1833Ssimonb * files.c: 5f28e1833Ssimonb * 6f28e1833Ssimonb * libsa file table. separate from other global variables so that 7f28e1833Ssimonb * all of those don't need to be linked in just to use open, et al. 8f28e1833Ssimonb */ 9f28e1833Ssimonb 10f28e1833Ssimonb #include "stand.h" 11f28e1833Ssimonb 12f28e1833Ssimonb struct open_file files[SOPEN_MAX]; 13*56b23fbbSmlelstv const char *fsmod = NULL; /* file system module name to load */ 14