aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/boot/boot.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2010-08-03 00:03:46 -0400
committerH. Peter Anvin <hpa@zytor.com>2010-08-03 00:07:20 -0400
commit6238b47b58480cd9c092600c05338dbe261b71ce (patch)
tree83055587295af222003e505c52ea3dbae3e0c3aa /arch/x86/boot/boot.h
parent8fee13a48e4879fba57725f6d9513df4bfa8e9f3 (diff)
x86, setup: move isdigit.h to ctype.h, header files on top.
It is a subset of <ctype.h> functionality, so name it ctype.h. Also, reorganize header files so #include statements are clustered near the top as they should be. Signed-off-by: H. Peter Anvin <hpa@zytor.com> LKML-Reference: <4C5752F2.8030206@kernel.org>
Diffstat (limited to 'arch/x86/boot/boot.h')
-rw-r--r--arch/x86/boot/boot.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/boot/boot.h b/arch/x86/boot/boot.h
index 00cf51cfc2e6..c7093bd9f2d3 100644
--- a/arch/x86/boot/boot.h
+++ b/arch/x86/boot/boot.h
@@ -28,6 +28,7 @@
28#include "bitops.h" 28#include "bitops.h"
29#include <asm/cpufeature.h> 29#include <asm/cpufeature.h>
30#include <asm/processor-flags.h> 30#include <asm/processor-flags.h>
31#include "ctype.h"
31 32
32/* Useful macros */ 33/* Useful macros */
33#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)])) 34#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
@@ -200,8 +201,6 @@ static inline int memcmp_gs(const void *s1, addr_t s2, size_t len)
200 return diff; 201 return diff;
201} 202}
202 203
203#include "isdigit.h"
204
205/* Heap -- available for dynamic lists. */ 204/* Heap -- available for dynamic lists. */
206extern char _end[]; 205extern char _end[];
207extern char *HEAP; 206extern char *HEAP;