mirror of
https://github.com/RGBCube/serenity
synced 2026-01-15 03:31:00 +00:00
10 lines
303 B
C
10 lines
303 B
C
#pragma once
|
|
|
|
#define PACKED __attribute__ ((packed))
|
|
#define NORETURN __attribute__ ((noreturn))
|
|
#undef ALWAYS_INLINE
|
|
#define ALWAYS_INLINE __attribute__ ((always_inline))
|
|
#define NEVER_INLINE __attribute__ ((noinline))
|
|
#define MALLOC_ATTR __attribute__ ((malloc))
|
|
#define PURE __attribute__ ((pure))
|
|
|