1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-19 22:00:59 +00:00
serenity/AK/Compiler.h

9 lines
282 B
C

#pragma once
#define PACKED __attribute__ ((packed))
#define NORETURN __attribute__ ((noreturn))
#define ALWAYS_INLINE __attribute__ ((always_inline))
#define NEVER_INLINE __attribute__ ((noinline))
#define MALLOC_ATTR __attribute__ ((malloc))
#define PURE __attribute__ ((pure))