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: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
Ralf Baechle 2014-04-19 00:15:40 +02:00
Родитель 47fa0c0251
Коммит bee1653593
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -23,7 +23,8 @@
*
* ########################################################################
*/
#ifndef __IEEE754INT_H
#define __IEEE754INT_H
#include "ieee754.h"
@ -162,3 +163,5 @@
#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 */