From 0b568ebbd0a74d0cc50f8525d9cc1fadfe194dea Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Tue, 24 Feb 2015 13:54:43 +0000 Subject: [PATCH] correct typo in the includeguards Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3901 --- src/cpu/lazyflags.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/cpu/lazyflags.h b/src/cpu/lazyflags.h index 726d36bb..c5e599f5 100644 --- a/src/cpu/lazyflags.h +++ b/src/cpu/lazyflags.h @@ -16,8 +16,8 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#if !defined __LAZYFLAGS_H -#define __LAZYFLAG_H +#ifndef DOSBOX_LAZYFLAGS_H +#define DOSBOX_LAZYFLAGS_H //Flag Handling Bit32u get_CF(void); @@ -31,7 +31,9 @@ Bitu FillFlags(void); void FillFlagsNoCFOF(void); void DestroyConditionFlags(void); +#ifndef DOSBOX_REGS_H #include "regs.h" +#endif struct LazyFlags { GenReg32 var1,var2,res;