From 9a1f977e39d8e9fcb6a9cb2a612f4743e802221d Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Fri, 10 Nov 2023 15:47:08 +0100 Subject: Kernel Style: Change uint*_t -> u* --- kernel/halts.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kernel/halts.h') diff --git a/kernel/halts.h b/kernel/halts.h index bd71673..11e47ff 100644 --- a/kernel/halts.h +++ b/kernel/halts.h @@ -1,11 +1,11 @@ #ifndef HALTS_H #define HALTS_H #include -#include +#include typedef struct { - uint8_t *ptr; - uint8_t active; + u8 *ptr; + u8 active; } halt_t; int create_read_fdhalt(vfs_fd_t *fd); -- cgit v1.2.3