diff options
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;      };    };  }; |