Date: Mon, 5 Mar 2018 09:17:18 +0000 (UTC) From: Eitan Adler <eadler@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r330485 - stable/11/lib/libc/include Message-ID: <201803050917.w259HIgN043986@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803050917.w259HIgN043986>