Commit a663bf906dce4bfa4d620ecc6b8ac6ef958eb7c2
1 parent
030274ae03
Exists in
master
and in
7 other branches
Protect against multiple inclusion.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Showing 1 changed file with 4 additions and 0 deletions Side-by-side Diff
arch/mips/math-emu/ieee754.h
... | ... | @@ -22,6 +22,8 @@ |
22 | 22 | * Kevin D. Kissell, kevink@mips.com and Carsten Langgard, carstenl@mips.com |
23 | 23 | * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved. |
24 | 24 | */ |
25 | +#ifndef __ARCH_MIPS_MATH_EMU_IEEE754_H | |
26 | +#define __ARCH_MIPS_MATH_EMU_IEEE754_H | |
25 | 27 | |
26 | 28 | #include <asm/byteorder.h> |
27 | 29 | #include <linux/types.h> |
... | ... | @@ -466,4 +468,6 @@ |
466 | 468 | /* compat */ |
467 | 469 | #define ieee754dp_fix(x) ieee754dp_tint(x) |
468 | 470 | #define ieee754sp_fix(x) ieee754sp_tint(x) |
471 | + | |
472 | +#endif /* __ARCH_MIPS_MATH_EMU_IEEE754_H */ |