fs.h 179 B

12345678910111213
  1. #ifndef __LINUX_FS_H__
  2. #define __LINUX_FS_H__
  3. #include <linux/stat.h>
  4. /*
  5. * File types
  6. */
  7. #define DT_UNKNOWN 0
  8. #define DT_DIR 4
  9. #define DT_REG 8
  10. #endif /* __LINUX_FS_H__ */