1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00:00

Add ALWAYS_INLINE macro.

This commit is contained in:
Andreas Kling 2018-10-22 12:55:59 +02:00
parent ba185e3eba
commit 8f941561b4

View file

@ -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