Author: eadler
Date: Sat Dec  2 19:42:08 2017
New Revision: 326479
URL: https://svnweb.freebsd.org/changeset/base/326479

Log:
  Add include guard to fpmath.h
  
  Submitted by: kargl

Modified:
  head/lib/libc/include/fpmath.h

Modified: head/lib/libc/include/fpmath.h
==============================================================================
--- head/lib/libc/include/fpmath.h      Sat Dec  2 19:10:52 2017        
(r326478)
+++ head/lib/libc/include/fpmath.h      Sat Dec  2 19:42:08 2017        
(r326479)
@@ -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 */
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to