summaryrefslogtreecommitdiff
path: root/src/shared/types.h
diff options
context:
space:
mode:
authordzwdz2022-07-26 18:16:10 +0200
committerdzwdz2022-07-26 18:16:10 +0200
commit18667c48b0cf6497b50c00f00f474d79a68f59ce (patch)
tree83029f59242d6b5f5d486284e6542a31f0cda415 /src/shared/types.h
parent13519597d98c9271b7856242d5625896d18803c5 (diff)
shared: move some headers from shared/ to camellia/
Diffstat (limited to 'src/shared/types.h')
-rw-r--r--src/shared/types.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/shared/types.h b/src/shared/types.h
deleted file mode 100644
index f47e1bb..0000000
--- a/src/shared/types.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-#include <stdint.h>
-
-#ifdef __CHECKER__
-# define __user __attribute__((noderef, address_space(__user)))
-# define __force __attribute__((force))
-#else
-# define __user
-# define __force
-#endif
-
-typedef void __user * userptr_t;
-typedef int handle_t;
-
-enum vfs_operation {
- VFSOP_OPEN,
- VFSOP_READ,
- VFSOP_WRITE,
- VFSOP_CLOSE,
-};