MIPS: math-emu: Harden ieee754int.h against multiple inclusion.
authorRalf Baechle <ralf@linux-mips.org>
Fri, 18 Apr 2014 22:15:40 +0000 (00:15 +0200)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 21 May 2014 09:12:56 +0000 (11:12 +0200)
The header file had no include guards; this only happened to work because
the file only contains macro definitions and protypes.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/math-emu/ieee754int.h

index 27ed825ad35aefc082846d94efbf5cc170818516..62d0fdbdb44ef1f6e2071b5839bf827620224dc6 100644 (file)
@@ -23,7 +23,8 @@
  *
  * ########################################################################
  */
-
+#ifndef __IEEE754INT_H
+#define __IEEE754INT_H
 
 #include "ieee754.h"
 
 #define FLUSHYDP FLUSHDP(y, yc, ys, ye, ym)
 #define FLUSHXSP FLUSHSP(x, xc, xs, xe, xm)
 #define FLUSHYSP FLUSHSP(y, yc, ys, ye, ym)
+
+#endif /* __IEEE754INT_H  */