diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-10-19 14:23:03 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-10-19 14:23:03 -0700 |
commit | 1626ee4b93762c0eba7047ef005cedda21440624 (patch) | |
tree | 1f7f257053aaa20166700c4aa985f1d7d724ea29 | |
parent | e1be925734e7b6a273fb15d903f6c9e6375b5de5 (diff) | |
download | syslinux.git-1626ee4b93762c0eba7047ef005cedda21440624.tar.gz syslinux.git-1626ee4b93762c0eba7047ef005cedda21440624.tar.xz syslinux.git-1626ee4b93762c0eba7047ef005cedda21440624.zip |
mboot.c32: add <stdint.h> and <stdbool.h>syslinux-3.73-pre5
We need <stdbool.h>; we might as well add <stdint.h> as well.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r-- | com32/modules/mboot.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/com32/modules/mboot.c b/com32/modules/mboot.c index 2ebba066..ad659d99 100644 --- a/com32/modules/mboot.c +++ b/com32/modules/mboot.c @@ -29,6 +29,8 @@ #include <stdio.h> #include <stdlib.h> #include <stddef.h> +#include <stdint.h> +#include <stdbool.h> #include <string.h> #include <console.h> #include <zlib.h> |