svn commit: r330485 - stable/11/lib/libc/include
Eitan Adler
eadler at FreeBSD.org
Mon Mar 5 09:17:19 UTC 2018
Author: eadler
Date: Mon Mar 5 09:17:18 2018
New Revision: 330485
URL: https://svnweb.freebsd.org/changeset/base/330485
Log:
MFC r326479:
Add include guard to fpmath.h
Modified:
stable/11/lib/libc/include/fpmath.h
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/lib/libc/include/fpmath.h
==============================================================================
--- stable/11/lib/libc/include/fpmath.h Mon Mar 5 09:06:14 2018 (r330484)
+++ stable/11/lib/libc/include/fpmath.h Mon Mar 5 09:17:18 2018 (r330485)
@@ -27,6 +27,9 @@
* $FreeBSD$
*/
+#ifndef _FPMATH_H_
+#define _FPMATH_H_
+
#include <sys/endian.h>
#include "_fpmath.h"
@@ -73,3 +76,5 @@ union IEEEd2bits {
#endif
} bits;
};
+
+#endif /* !_FPMATH_H */
More information about the svn-src-stable-11
mailing list