Skip to content

Commit

Permalink
Merge pull request #29 from dsLeks/add-define-guard
Browse files Browse the repository at this point in the history
Add define guard
  • Loading branch information
dsLeks authored Dec 12, 2023
2 parents dc324a5 + 19e088b commit 14ad5b5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions xos.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#ifndef XOS_H_
#define XOS_H_

#include <assert.h>
#include <stdint.h>
#include <stdio.h>
Expand Down Expand Up @@ -172,3 +175,5 @@ class Parser {
};

} // namespace xos

#endif // XOS_H_

0 comments on commit 14ad5b5

Please sign in to comment.