From 7825a857f813c7306e5989210169570fedf42631 Mon Sep 17 00:00:00 2001 From: Patrick Mackinlay Date: Wed, 1 Feb 2023 14:25:59 +0700 Subject: softfloat: de-conflict include guards --- src/devices/cpu/i386/i386.h | 4 ++-- src/devices/cpu/m68000/m68kmusashi.h | 4 ++-- src/devices/machine/i8087.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/devices/cpu/i386/i386.h b/src/devices/cpu/i386/i386.h index 60bf5b59b8d..6fd5785a9a4 100644 --- a/src/devices/cpu/i386/i386.h +++ b/src/devices/cpu/i386/i386.h @@ -6,8 +6,8 @@ #pragma once // SoftFloat 2 lacks an include guard -#ifndef softfloat_h -#define softfloat_h 1 +#ifndef softfloat2_h +#define softfloat2_h 1 #include "softfloat/milieu.h" #include "softfloat/softfloat.h" #endif diff --git a/src/devices/cpu/m68000/m68kmusashi.h b/src/devices/cpu/m68000/m68kmusashi.h index 8e780dd24ae..9b822609abd 100644 --- a/src/devices/cpu/m68000/m68kmusashi.h +++ b/src/devices/cpu/m68000/m68kmusashi.h @@ -8,8 +8,8 @@ #include "m68kcommon.h" // SoftFloat 2 lacks an include guard -#ifndef softfloat_h -#define softfloat_h 1 +#ifndef softfloat2_h +#define softfloat2_h 1 #include "softfloat/milieu.h" #include "softfloat/softfloat.h" #endif diff --git a/src/devices/machine/i8087.h b/src/devices/machine/i8087.h index af3dea07f08..be926b88a37 100644 --- a/src/devices/machine/i8087.h +++ b/src/devices/machine/i8087.h @@ -2,8 +2,8 @@ // copyright-holders:Philip Bennett, Carl // SoftFloat 2 lacks an include guard -#ifndef softfloat_h -#define softfloat_h 1 +#ifndef softfloat2_h +#define softfloat2_h 1 #include "softfloat/milieu.h" #include "softfloat/softfloat.h" #endif -- cgit v1.2.3