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:
parent
3409000130
commit
eed0eadcc2
10 changed files with 237 additions and 18 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue