aboutsummaryrefslogtreecommitdiff
path: root/include/const.h
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2015-05-29 16:50:48 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2015-05-29 16:50:48 +0200
commit71f714aa968bf6b0fa811a59445a7fb3f9befc23 (patch)
tree3bba4dc4450682371caa1380813e71e75156a12f /include/const.h
parent51a642f501eb8a7e7a7c5abb7d2a7766e82c2704 (diff)
downloadqboot-71f714aa968bf6b0fa811a59445a7fb3f9befc23.zip
qboot-71f714aa968bf6b0fa811a59445a7fb3f9befc23.tar.gz
qboot-71f714aa968bf6b0fa811a59445a7fb3f9befc23.tar.bz2
avoid reserved identifiers for header guards
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/const.h')
-rw-r--r--include/const.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/const.h b/include/const.h
index 3d5213f..18f2350 100644
--- a/include/const.h
+++ b/include/const.h
@@ -1,7 +1,7 @@
/* const.h: Macros for dealing with constants. */
-#ifndef _LINUX_CONST_H
-#define _LINUX_CONST_H
+#ifndef BIOS_CONST_H
+#define BIOS_CONST_H
/* Some constant macros are used in both assembler and
* C code. Therefore we cannot annotate them always with
@@ -24,4 +24,4 @@
#define BITUL(x) (_AC(1,UL) << (x))
#define BITULL(x) (_AC(1,ULL) << (x))
-#endif /* !(_LINUX_CONST_H) */
+#endif /* BIOS_CONST_H */