summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-10-19 14:23:03 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-10-19 14:23:03 -0700
commit1626ee4b93762c0eba7047ef005cedda21440624 (patch)
tree1f7f257053aaa20166700c4aa985f1d7d724ea29
parente1be925734e7b6a273fb15d903f6c9e6375b5de5 (diff)
downloadsyslinux-3.73-pre5.tar.gz
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.c2
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>