Skip to content
Snippets Groups Projects
Commit bee16535 authored by Ralf Baechle's avatar Ralf Baechle
Browse files

MIPS: math-emu: Harden ieee754int.h against multiple inclusion.


The header file had no include guards; this only happened to work because
the file only contains macro definitions and protypes.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 47fa0c02
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,8 @@ ...@@ -23,7 +23,8 @@
* *
* ######################################################################## * ########################################################################
*/ */
#ifndef __IEEE754INT_H
#define __IEEE754INT_H
#include "ieee754.h" #include "ieee754.h"
...@@ -162,3 +163,5 @@ ...@@ -162,3 +163,5 @@
#define FLUSHYDP FLUSHDP(y, yc, ys, ye, ym) #define FLUSHYDP FLUSHDP(y, yc, ys, ye, ym)
#define FLUSHXSP FLUSHSP(x, xc, xs, xe, xm) #define FLUSHXSP FLUSHSP(x, xc, xs, xe, xm)
#define FLUSHYSP FLUSHSP(y, yc, ys, ye, ym) #define FLUSHYSP FLUSHSP(y, yc, ys, ye, ym)
#endif /* __IEEE754INT_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment