Subversion Repositories HelenOS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* This is the master header for fs.  It includes some other files
  2. * and defines the principal constants.
  3. */
  4.  
  5. #ifndef _FS_H
  6. #define _FS_H
  7.  
  8. #include <ipc/ipc.h>
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include "../share/base_const.h"
  12.  
  13. #include "limits.h"
  14. #include "errno.h"
  15. #include "const.h"
  16. #include "type.h"
  17. #include "proto.h"
  18. #include "glo.h"
  19.  
  20. #endif /* _FS_H */
  21.