mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-04-20 19:43:13 +00:00
10 lines
282 B
C
10 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))
|
|
|