diff options
author | dzwdz | 2021-09-11 18:04:57 +0200 |
---|---|---|
committer | dzwdz | 2021-09-11 18:04:57 +0200 |
commit | af2f9184e03015dc3b188ea437bbf496638000ce (patch) | |
tree | 4b4186d8df73bc1b96e14e5c8eadcf1a4f66692a /src/init/types.h | |
parent | 0994192f6cab853f4a49ac73aa63f6820c886ec2 (diff) |
replace `user_ptr` with a linux-style `__user` annotation
Diffstat (limited to 'src/init/types.h')
-rw-r--r-- | src/init/types.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/init/types.h b/src/init/types.h index 2c56484..9c6d64b 100644 --- a/src/init/types.h +++ b/src/init/types.h @@ -1,4 +1,5 @@ #pragma once #define TYPES_INCLUDED -typedef char* user_ptr; + +#define __user |