From a752fdad02f5eba89c53a53e4a212cf31cbf4670 Mon Sep 17 00:00:00 2001 From: Tim Wiederhake Date: Wed, 27 Dec 2023 23:08:57 +0100 Subject: Fix include guard names Names that begin with an underscore ('_') are reserved. Follow the usual practice of naming the include guard of file "foo.h" "FOO_H", as is already done in "icons.h". Signed-off-by: Tim Wiederhake --- src/version.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/version.h') diff --git a/src/version.h b/src/version.h index 553b613..fb0d2d6 100644 --- a/src/version.h +++ b/src/version.h @@ -57,9 +57,9 @@ in this Software without prior written authorization from The Open Group. * **********************************************************************/ -#ifndef _VERSION_ -#define _VERSION_ +#ifndef VERSION_H +#define VERSION_H extern const char *Version; -#endif /* _VERSION_ */ +#endif /* VERSION_H */ -- cgit v1.2.3