The existing bool definition is broken for c23, where bool is now a keyword.
Signed-off-by: Elliott Hughes <e...@google.com> Signed-off-by: Jaegeuk Kim <jaeg...@kernel.org> --- include/f2fs_fs.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/f2fs_fs.h b/include/f2fs_fs.h index 9534da98ca53..0cb9228288c0 100644 --- a/include/f2fs_fs.h +++ b/include/f2fs_fs.h @@ -28,6 +28,7 @@ #include <stddef.h> #include <string.h> #include <time.h> +#include <stdbool.h> #ifdef HAVE_CONFIG_H #include <config.h> @@ -119,9 +120,6 @@ typedef uint16_t u16; typedef uint8_t u8; typedef u32 block_t; typedef u32 nid_t; -#ifndef bool -typedef u8 bool; -#endif typedef unsigned long pgoff_t; typedef unsigned short umode_t; -- 2.47.0.163.g1226f6d8fa-goog _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel