From c45f6b379d98c3b32dfa7abda74434978aa94094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Wed, 13 Feb 2019 16:02:54 +0200 Subject: Remove leading double underscores from include guard defines A symbol starting with two leading underscores is reserved for the compiler/standard library implementation. Also remove the trailing two double underscores for consistency and symmetry. --- src/arm/64/util.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/arm/64/util.S') diff --git a/src/arm/64/util.S b/src/arm/64/util.S index fa8f0be..1181a6e 100644 --- a/src/arm/64/util.S +++ b/src/arm/64/util.S @@ -26,8 +26,8 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *****************************************************************************/ -#ifndef __DAVID_SRC_ARM_64_UTIL_S__ -#define __DAVID_SRC_ARM_64_UTIL_S__ +#ifndef DAVID_SRC_ARM_64_UTIL_S +#define DAVID_SRC_ARM_64_UTIL_S #include "config.h" #include "src/arm/asm.S" @@ -59,4 +59,4 @@ #endif .endm -#endif /* __DAVID_SRC_ARM_64_UTIL_S__ */ +#endif /* DAVID_SRC_ARM_64_UTIL_S */ -- cgit v1.2.3