OBFI

Brainfuck Interpreter
git clone http://git.omkov.net/OBFI
Log | Tree | Refs | README | LICENCE | Download

AuthorJakob Wakeling <[email protected]>
Date2020-07-01 23:56:09
Commit7d3dca29ad94068f748ee06a23d27973b26cccae
Parent6fb8c64b9e1d312272eafaf3ddddbaa9b7969ff5

Fix header guard in parse.h

Diffstat

M src/parse.h | 6 +++---

1 files changed, 3 insertions, 3 deletions

diff --git a/src/parse.h b/src/parse.h
index 306636d..453a6fe 100644
--- a/src/parse.h
+++ b/src/parse.h
@@ -33,8 +33,8 @@ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE.
 */
 
-#ifndef OMKOV_OBFI_LEX_H_AD07BU3C
-#define OMKOV_OBFI_LEX_H_AD07BU3C
+#ifndef OMKOV_OBFI_PARSE_H_AD07BU3C
+#define OMKOV_OBFI_PARSE_H_AD07BU3C
 
 #include <stddef.h>
 #include <stdio.h>
@@ -55,4 +55,4 @@ typedef struct { int typ; size_t num, ln, cl; } tok_t;
 
 extern tok_t *parse(char *str, size_t len);
 
-#endif // OMKOV_OBFI_LEX_H_AD07BU3C
+#endif // OMKOV_OBFI_PARSE_H_AD07BU3C