]> git.sur5r.net Git - c128-kasse/blobdiff - include/globals.h
include guards: don't begin them with underscores
[c128-kasse] / include / globals.h
index 00fca09576a72a310f6820f1f28af838a7688412..8a64063260cc34aa9d7462a7f72f897c7883c319 100644 (file)
@@ -1,9 +1,9 @@
-#ifndef _GLOBALS_H_
-#define _GLOBALS_H_
+#ifndef GLOBALS_H
+#define GLOBALS_H
 
 #include <stdint.h>
 
-#ifdef _IS_GLOBALS_C
+#ifdef IS_GLOBALS_C
 #define GLOBAL
 #else
 #define GLOBAL extern
@@ -13,4 +13,4 @@ void init_globals(void);
 
 GLOBAL uint8_t printing;
 
-#endif // _GLOBALS_H_
+#endif /*  GLOBALS_H */