Add include guard to fpmath.h

Submitted by:	kargl
This commit is contained in:
Eitan Adler 2017-12-02 19:42:08 +00:00
parent df0e741af5
commit c774ad670a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=326479

View file

@ -29,6 +29,9 @@
* $FreeBSD$
*/
#ifndef _FPMATH_H_
#define _FPMATH_H_
#include <sys/endian.h>
#include "_fpmath.h"
@ -75,3 +78,5 @@ union IEEEd2bits {
#endif
} bits;
};
#endif /* !_FPMATH_H */