mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-29 04:39:10 +00:00
ELFLoader should fail with an error message for unresolved symbols.
This commit is contained in:
parent
ec1d16b307
commit
16f318408d
Notes:
sideshowbarker
2024-07-19 18:39:19 +09:00
Author: https://github.com/awesomekling
Commit: 16f318408d
14 changed files with 80 additions and 24 deletions
9
AK/Compiler.h
Normal file
9
AK/Compiler.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#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))
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue