summaryrefslogtreecommitdiff
path: root/src/parse.h
diff options
context:
space:
mode:
authorTim Wiederhake <twied@gmx.net>2023-12-27 23:08:57 +0100
committerTim Wiederhake <twied@gmx.net>2024-01-01 12:21:24 +0100
commita752fdad02f5eba89c53a53e4a212cf31cbf4670 (patch)
tree6ba74a7cc8011fba05e1a3979862d248a1219d0b /src/parse.h
parent98316f44c03edaa55bf75c4ba2b3b9e3ec16efc6 (diff)
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 <twied@gmx.net>
Diffstat (limited to 'src/parse.h')
-rw-r--r--src/parse.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parse.h b/src/parse.h
index 0d0500c..a208cc8 100644
--- a/src/parse.h
+++ b/src/parse.h
@@ -57,8 +57,8 @@ in this Software without prior written authorization from The Open Group.
*
**********************************************************************/
-#ifndef _PARSE_
-#define _PARSE_
+#ifndef PARSE_H
+#define PARSE_H
#include "list.h"
@@ -149,4 +149,4 @@ extern int mods;
#define D_EAST 3
#define D_WEST 4
-#endif /* _PARSE_ */
+#endif /* PARSE_H */