1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2026-08-22 11:04:22 -04:00

Fix Multiboot2 on Tiny C Compiler (#50)

This commit is contained in:
Alex Kotov 2022-06-12 13:25:10 +03:00 committed by GitHub
parent 3409000130
commit eed0eadcc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 237 additions and 18 deletions

View file

@ -1,3 +1,7 @@
#ifdef __TINYC__
#pragma pack(push, 1)
#endif
static const struct {
struct KernAux_Multiboot2_Info multiboot2_info;
@ -365,3 +369,7 @@ static const struct {
},
},
};
#ifdef __TINYC__
#pragma pack(pop)
#endif