diff options
author | Anton Kling <anton@kling.gg> | 2023-11-10 15:47:08 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-10 15:47:08 +0100 |
commit | 9a1f977e39d8e9fcb6a9cb2a612f4743e802221d (patch) | |
tree | 1fc53f6e80eb40d24274f2f8967d584b88c6d664 /kernel/kubsan.h | |
parent | 0cb4afef6da5488a128e5aaece435e9aa5f5797e (diff) |
Kernel Style: Change uint*_t -> u*
Diffstat (limited to 'kernel/kubsan.h')
-rw-r--r-- | kernel/kubsan.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/kubsan.h b/kernel/kubsan.h index dac5407..8f10624 100644 --- a/kernel/kubsan.h +++ b/kernel/kubsan.h @@ -1,10 +1,10 @@ -#include <stdint.h> +#include <typedefs.h> enum { type_kind_int = 0, type_kind_float = 1, type_unknown = 0xffff }; struct type_descriptor { - uint16_t type_kind; - uint16_t type_info; + u16 type_kind; + u16 type_info; char type_name[1]; }; @@ -13,8 +13,8 @@ struct source_location { union { unsigned long reported; struct { - uint32_t line; - uint32_t column; + u32 line; + u32 column; }; }; }; |