diff options
author | Luca Dariz <luca@orpolo.org> | 2022-06-28 12:10:51 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-08-27 21:16:15 +0200 |
commit | 499f154bf12fe15c6aa1740100e4545a71490be1 (patch) | |
tree | d7a3df1d591249689eae742add539248cae9a6d5 /kern/boot_script.c | |
parent | a3db37b8837c091f6018257f2de5bb740350f3f5 (diff) | |
download | gnumach-499f154bf12fe15c6aa1740100e4545a71490be1.tar.gz gnumach-499f154bf12fe15c6aa1740100e4545a71490be1.tar.bz2 gnumach-499f154bf12fe15c6aa1740100e4545a71490be1.zip |
fix warnings for 32 bit builds
Signed-off-by: Luca Dariz <luca@orpolo.org>
Message-Id: <20220628101054.446126-13-luca@orpolo.org>
Diffstat (limited to 'kern/boot_script.c')
-rw-r--r-- | kern/boot_script.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kern/boot_script.c b/kern/boot_script.c index 9e8f60a7..7e31075f 100644 --- a/kern/boot_script.c +++ b/kern/boot_script.c @@ -6,6 +6,7 @@ #include <string.h> #include <kern/printf.h> #include "boot_script.h" +#include "bootstrap.h" /* This structure describes a symbol. */ |