~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Minix Cross Reference
Minix/fs/fs.h


  1 /* This is the master header for fs.  It includes some other files
  2  * and defines the principal constants.
  3  */
  4 #define _POSIX_SOURCE      1    /* tell headers to include POSIX stuff */
  5 #define _MINIX             1    /* tell headers to include MINIX stuff */
  6 #define _SYSTEM            1    /* tell headers that this is the kernel */
  7 
  8 /* The following are so basic, all the *.c files get them automatically. */
  9 #include <minix/config.h>       /* MUST be first */
 10 #include <ansi.h>               /* MUST be second */
 11 #include <sys/types.h>
 12 #include <minix/const.h>
 13 #include <minix/type.h>
 14 
 15 #include <limits.h>
 16 #include <errno.h>
 17 
 18 #include <minix/syslib.h>
 19 
 20 #include "const.h"
 21 #include "type.h"
 22 #include "proto.h"
 23 #include "glo.h"
 24 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.