svn commit: r326479 - head/lib/libc/include

Eitan Adler eadler at FreeBSD.org
Sat Dec 2 19:42:10 UTC 2017


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 */


More information about the svn-src-head mailing list