From: Ye Liu Use standard instead of manually defining bool, true and false. Signed-off-by: Ye Liu --- tools/mm/page_owner_sort.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/mm/page_owner_sort.c b/tools/mm/page_owner_sort.c index 880e36df0c11..894a765652ac 100644 --- a/tools/mm/page_owner_sort.c +++ b/tools/mm/page_owner_sort.c @@ -13,6 +13,7 @@ #include #include +#include #include #include #include @@ -23,9 +24,6 @@ #include #include -#define bool int -#define true 1 -#define false 0 #define TASK_COMM_LEN 16 struct block_list { -- 2.43.0