diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-15 13:09:24 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-15 13:09:24 +0100 |
| commit | 320784568526764cdfcccdb4ffece9c2aed5af8d (patch) | |
| tree | eb24b495f9745ed23f966a71cf647e3cc05c2118 /include/boot.h | |
| parent | 4c71cb049493fbd0287bec51308f065e08ff556f (diff) | |
fix: boot.h: Fix Binary64 struct for IEEE 754.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/boot.h')
| -rw-r--r-- | include/boot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/boot.h b/include/boot.h index 9039859..642e21a 100644 --- a/include/boot.h +++ b/include/boot.h @@ -138,8 +138,8 @@ static inline void __sync_synchronize(void) { typedef union { struct { char __sign; - int32_t __mantissa; - int16_t __exponent; + int16_t __mantissa; + int32_t __exponent; }; float __fv; |
