Updated for header guards.

This commit is contained in:
jakeg00dwin 2024-06-26 17:33:10 -07:00
parent d70e9f4c46
commit da9ee718c8
1 changed files with 3 additions and 3 deletions

View File

@ -7,8 +7,8 @@
* @file module_name.h * @file module_name.h
*/ */
#ifndef module_name #ifndef module_name_H
#define module_name #define module_name_H
/** /**
@ -17,4 +17,4 @@
*/ */
int add_two(int a); int add_two(int a);
#endif //module_name #endif //module_name_H