From f62b3079ff119db8cd07cb62f9307a3bae7c6cbe Mon Sep 17 00:00:00 2001 From: redcode Date: Fri, 12 Oct 2018 03:33:13 +0200 Subject: [PATCH] The header inclusion macro has been changed to avoid warnings. --- API/emulation/CPU/Z80.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/API/emulation/CPU/Z80.h b/API/emulation/CPU/Z80.h index 48221d6..9d32f97 100644 --- a/API/emulation/CPU/Z80.h +++ b/API/emulation/CPU/Z80.h @@ -7,8 +7,8 @@ Copyright (C) 1999-2018 Manuel Sainz de Baranda y Goñi. Released under the terms of the GNU General Public License v3. */ -#ifndef __emulation_CPU_Z80_H__ -#define __emulation_CPU_Z80_H__ +#ifndef _emulation_CPU_Z80_H_ +#define _emulation_CPU_Z80_H_ #include #include @@ -57,4 +57,4 @@ CPU_Z80_API void z80_int (Z80 *object, zboolean state); Z_C_SYMBOLS_END -#endif /* __emulation_CPU_Z80_H__ */ +#endif /* _emulation_CPU_Z80_H_ */