From 7d79184e7b3aafc7c560f10e2f6e804109a08474 Mon Sep 17 00:00:00 2001 From: Allofich <19624336+Allofich@users.noreply.github.com> Date: Sun, 22 Aug 2021 15:49:19 +0900 Subject: [PATCH] Fix _FPU_CONTROL_H #define Looks like it was accidentally put into the comment at the top of the file. --- include/fpu_control_x86.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/fpu_control_x86.h b/include/fpu_control_x86.h index c20e0ac76..a475d2c16 100644 --- a/include/fpu_control_x86.h +++ b/include/fpu_control_x86.h @@ -16,9 +16,10 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +*/ #ifndef _FPU_CONTROL_H -#define _FPU_CONTROL_H 1 +#define _FPU_CONTROL_H /* Note that this file sets on x86-64 only the x87 FPU, it does not touch the SSE unit. */