From 8f941561b49015b867d8f87f6859b5bf77895aa2 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 22 Oct 2018 12:55:59 +0200 Subject: [PATCH] Add ALWAYS_INLINE macro. --- Kernel/types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/types.h b/Kernel/types.h index 8469e5cd6f..3b4b609454 100644 --- a/Kernel/types.h +++ b/Kernel/types.h @@ -4,6 +4,7 @@ #define PACKED __attribute__ ((packed)) #define NORETURN __attribute__ ((noreturn)) +#define ALWAYS_INLINE __attribute__ ((always_inline)) #define PURE __attribute__ ((pure)) #define PUBLIC #define PRIVATE static