4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-03 12:34:33 +08:00

14 lines
179 B
C
Raw Normal View History

#ifndef __LINUX_FS_H__
#define __LINUX_FS_H__
#include <linux/stat.h>
/*
* File types
*/
#define DT_UNKNOWN 0
#define DT_DIR 4
#define DT_REG 8
#endif /* __LINUX_FS_H__ */