14 lines
179 B
C
14 lines
179 B
C
|
#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__ */
|