mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-02 22:04:42 +00:00
11 lines
303 B
C
11 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))
|
|
|