From 146fc295a0effcd537e0ad2dbdd8e63e50d61600 Mon Sep 17 00:00:00 2001 From: pumnflqv2 Date: Tue, 5 Jul 2022 04:32:55 +0800 Subject: [PATCH] ADD file via upload --- 0/linux/include/const.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 0/linux/include/const.h diff --git a/0/linux/include/const.h b/0/linux/include/const.h new file mode 100644 index 0000000..7828e61 --- /dev/null +++ b/0/linux/include/const.h @@ -0,0 +1,15 @@ +#ifndef _CONST_H +#define _CONST_H + +#define BUFFER_END 0x200000 + +#define I_TYPE 0170000 +#define I_DIRECTORY 0040000 +#define I_REGULAR 0100000 +#define I_BLOCK_SPECIAL 0060000 +#define I_CHAR_SPECIAL 0020000 +#define I_NAMED_PIPE 0010000 +#define I_SET_UID_BIT 0004000 +#define I_SET_GID_BIT 0002000 + +#endif