]> Kevux Git Server - control/commitdiff
Cleanup: Improve header file define wrappers.
authorKevin Day <Kevin@kevux.org>
Fri, 2 Aug 2024 02:23:19 +0000 (21:23 -0500)
committerKevin Day <Kevin@kevux.org>
Fri, 2 Aug 2024 02:23:19 +0000 (21:23 -0500)
The ifdef wrappers used for each header file is updated to be more accurate in regards to the directory and file path structure.

sources/c/program/control/control/main.h
sources/c/program/control/main/process.h
sources/c/program/control/main/thread.h

index 18aef0c668d4e244edadb95c7365698c949f1c65..32f617bac3f54adfe391759dc26f2eef8c21528f 100644 (file)
@@ -8,8 +8,8 @@
  * This file is only ever included by program/control/control/main.c and should not normally be included anywhere else.
  * Anything that wants to include this should be providing the "control" program functionality in some manner.
  */
-#ifndef _control_control_h
-#define _control_control_h
+#ifndef _control_control_main_h
+#define _control_control_main_h
 
 #ifdef __cplusplus
 extern "C" {
@@ -35,4 +35,4 @@ extern int main(const int argc, const f_string_t *argv, const f_string_t *envp);
 } // extern "C"
 #endif
 
-#endif // _control_control_h
+#endif // _control_control_main_h
index da183d0e4fc898370ba11db8956029910406dd53..4a90ef75e3a3ee83023595659f79b683eaeae939 100644 (file)
@@ -9,8 +9,8 @@
  *
  * This is auto-included and should not need to be explicitly included.
  */
-#ifndef _control_process_h
-#define _control_process_h
+#ifndef _control_main_process_h
+#define _control_main_process_h
 
 #ifdef __cplusplus
 extern "C" {
@@ -46,4 +46,4 @@ extern "C" {
 } // extern "C"
 #endif
 
-#endif // _control_process_h
+#endif // _control_main_process_h
index d842a8dad90159dd71123e688fa3095350b45d97..8c542d36b6ef90ff83ba663f6d710863add0e569 100644 (file)
@@ -9,8 +9,8 @@
  *
  * This is auto-included and should not need to be explicitly included.
  */
-#ifndef _control_thread_h
-#define _control_thread_h
+#ifndef _control_main_thread_h
+#define _control_main_thread_h
 
 /**
  * Thread handler for signals/interrupts.
@@ -43,4 +43,4 @@
 } // extern "C"
 #endif
 
-#endif // _control_thread_h
+#endif // _control_main_thread_h