x86_64: adjust formatting

This commit is contained in:
2026-02-08 11:36:16 +00:00
parent 4051265876
commit 00ea2b1b3b
7 changed files with 366 additions and 331 deletions

View File

@@ -9,11 +9,12 @@ extern "C" {
#endif
#define __X2(x) #x
#define __X(x) __X2(x)
#define __X(x) __X2(x)
#define __define_initcall(fn, id) \
static initcall_t __initcall_##fn##id __used \
__section(".initcall" __X(id) ".init") = (fn)
#define __define_initcall(fn, id) \
static initcall_t __initcall_##fn##id __used __section( \
".initcall" __X(id) ".init") \
= (fn)
extern int ml_init(uintptr_t arg);