This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/patches/mintsuki-stddef.patch

14 lines
395 B
Diff

diff --git a/stddef.h b/stddef.h
index 376eb75..fb1e99d 100644
--- a/stddef.h
+++ b/stddef.h
@@ -50,4 +50,9 @@ typedef decltype(nullptr) nullptr_t;
# define unreachable() __builtin_unreachable()
#endif
+typedef struct {
+ long long ll __attribute__((__aligned__(__alignof__(long long))));
+ long double ld __attribute__((__aligned__(__alignof__(long double))));
+} max_align_t;
+
#endif