Skip to content

Commit

Permalink
Add missing include guard
Browse files Browse the repository at this point in the history
  • Loading branch information
ccawley2011 committed Sep 17, 2024
1 parent adf0025 commit d4100e5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions arch/ArcemConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
are implimented add code for parsing and setting values
there too.
*/
#ifndef ARCEMCONFIG_HEADER
#define ARCEMCONFIG_HEADER

#include "arch/hdc63463.h"
#include "../c99.h"

Expand Down Expand Up @@ -138,3 +141,5 @@ extern void ArcemConfig_ParseConfigFile(ArcemConfig* pConfig);
* @param argv Array of char*'s represented space seperated commandline arguments
*/
extern void ArcemConfig_ParseCommandLine(ArcemConfig* pConfig, int argc, char* argv[]);

#endif

0 comments on commit d4100e5

Please sign in to comment.