mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
c7221b7dee
I think that concludes the Terminal stress test optimizations for now.
11 lines
415 B
C
11 lines
415 B
C
#pragma once
|
|
|
|
#define PACKED __attribute__ ((packed))
|
|
#define NORETURN __attribute__ ((noreturn))
|
|
#define FLATTEN __attribute__ ((flatten))
|
|
#undef ALWAYS_INLINE
|
|
#define ALWAYS_INLINE inline __attribute__ ((always_inline))
|
|
#define NEVER_INLINE __attribute__ ((noinline))
|
|
#define MALLOC_ATTR __attribute__ ((malloc))
|
|
#define PURE __attribute__ ((pure))
|
|
#define WARN_UNUSED_RESULT __attribute__ ((warn_unused_result))
|