aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Schnelle <svens@stackframe.org>2019-09-11 17:34:23 +0200
committerSven Schnelle <svens@stackframe.org>2019-09-11 17:38:40 +0200
commitc6d6b2295575e25c657216aced6c8c4bedc391e3 (patch)
tree3772f2293106a506fef2bb4aaef44a1562e57365
parentde243dc9e66465f14eca5e2d028d3154bc59ad0e (diff)
downloadseabios-hppa-c6d6b2295575e25c657216aced6c8c4bedc391e3.zip
seabios-hppa-c6d6b2295575e25c657216aced6c8c4bedc391e3.tar.gz
seabios-hppa-c6d6b2295575e25c657216aced6c8c4bedc391e3.tar.bz2
parisc: add missing header guard to hppa.h
Signed-off-by: Sven Schnelle <svens@stackframe.org>
-rw-r--r--src/parisc/hppa.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/parisc/hppa.h b/src/parisc/hppa.h
index 18dcd24..c1ae215 100644
--- a/src/parisc/hppa.h
+++ b/src/parisc/hppa.h
@@ -1,3 +1,5 @@
+#ifndef HPPA_H
+#define HPPA_H
/* this file is included by x86.h */
#if 0
@@ -383,3 +385,4 @@ static inline void wrmsr(u32 index, u64 val)
void cpuid(u32 index, u32 *eax, u32 *ebx, u32 *ecx, u32 *edx);
#endif // !__ASSEMBLY__
+#endif