Home | History | Annotate | Line # | Download | only in libsa
files.c revision 1.1.10.2
      1  1.1.10.2  jdolecek /* $NetBSD: files.c,v 1.1.10.2 2002/06/23 17:49:52 jdolecek Exp $ */
      2  1.1.10.2  jdolecek 
      3  1.1.10.2  jdolecek /*
      4  1.1.10.2  jdolecek  *	files.c:
      5  1.1.10.2  jdolecek  *
      6  1.1.10.2  jdolecek  *	libsa file table.  separate from other global variables so that
      7  1.1.10.2  jdolecek  *	all of those don't need to be linked in just to use open, et al.
      8  1.1.10.2  jdolecek  */
      9  1.1.10.2  jdolecek 
     10  1.1.10.2  jdolecek #include "stand.h"
     11  1.1.10.2  jdolecek 
     12  1.1.10.2  jdolecek struct open_file files[SOPEN_MAX];
     13