aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamil Staps2016-11-08 09:37:51 +0100
committerCamil Staps2016-11-08 09:37:51 +0100
commitd5caef47cee827fa8320e9f1abb83670aac2d08b (patch)
treefc5b8b5ceee977dc36825baa1dbd0932d31b76f9
parentRemove leading underscore from _FUSPEL_DEBUG and _FUSPEL_CLI (diff)
Change _H_* to _H_FUSPEL_* for compatibility with other libraries
-rw-r--r--interpreter/code.h4
-rw-r--r--interpreter/eval.h4
-rw-r--r--interpreter/fuspel.h4
-rw-r--r--interpreter/graphs.h4
-rw-r--r--interpreter/lex.h4
-rw-r--r--interpreter/mem.h4
-rw-r--r--interpreter/parse.h4
-rw-r--r--interpreter/print.h4
-rw-r--r--interpreter/syntax.h4
9 files changed, 18 insertions, 18 deletions
diff --git a/interpreter/code.h b/interpreter/code.h
index 250c240..6c7329a 100644
--- a/interpreter/code.h
+++ b/interpreter/code.h
@@ -1,5 +1,5 @@
-#ifndef _H_CODE
-#define _H_CODE
+#ifndef _H_FUSPEL_CODE
+#define _H_FUSPEL_CODE
#include "syntax.h"
#include "graphs.h"
diff --git a/interpreter/eval.h b/interpreter/eval.h
index 8c72115..121f3be 100644
--- a/interpreter/eval.h
+++ b/interpreter/eval.h
@@ -1,5 +1,5 @@
-#ifndef _H_EVAL
-#define _H_EVAL
+#ifndef _H_FUSPEL_EVAL
+#define _H_FUSPEL_EVAL
#include "syntax.h"
diff --git a/interpreter/fuspel.h b/interpreter/fuspel.h
index 0de4c8c..d89c42e 100644
--- a/interpreter/fuspel.h
+++ b/interpreter/fuspel.h
@@ -1,5 +1,5 @@
-#ifndef _H_FUSPEL
-#define _H_FUSPEL
+#ifndef _H_FUSPEL_FUSPEL
+#define _H_FUSPEL_FUSPEL
struct fuspel *import(struct fuspel *already_parsed, char *name);
diff --git a/interpreter/graphs.h b/interpreter/graphs.h
index 6c82bcc..28f81a9 100644
--- a/interpreter/graphs.h
+++ b/interpreter/graphs.h
@@ -1,5 +1,5 @@
-#ifndef _H_GRAPHS
-#define _H_GRAPHS
+#ifndef _H_FUSPEL_GRAPHS
+#define _H_FUSPEL_GRAPHS
#include <stdbool.h>
#include "syntax.h"
diff --git a/interpreter/lex.h b/interpreter/lex.h
index 45a5a3c..f549366 100644
--- a/interpreter/lex.h
+++ b/interpreter/lex.h
@@ -1,5 +1,5 @@
-#ifndef _H_LEX
-#define _H_LEX
+#ifndef _H_FUSPEL_LEX
+#define _H_FUSPEL_LEX
#include "syntax.h"
diff --git a/interpreter/mem.h b/interpreter/mem.h
index 62169e9..9b60e13 100644
--- a/interpreter/mem.h
+++ b/interpreter/mem.h
@@ -1,5 +1,5 @@
-#ifndef _H_MEM
-#define _H_MEM
+#ifndef _H_FUSPEL_MEM
+#define _H_FUSPEL_MEM
#include <stdlib.h>
diff --git a/interpreter/parse.h b/interpreter/parse.h
index d265a01..fef59fa 100644
--- a/interpreter/parse.h
+++ b/interpreter/parse.h
@@ -1,5 +1,5 @@
-#ifndef _H_PARSE
-#define _H_PARSE
+#ifndef _H_FUSPEL_PARSE
+#define _H_FUSPEL_PARSE
#include "syntax.h"
diff --git a/interpreter/print.h b/interpreter/print.h
index aaf12db..01cba66 100644
--- a/interpreter/print.h
+++ b/interpreter/print.h
@@ -1,5 +1,5 @@
-#ifndef _H_PRINT
-#define _H_PRINT
+#ifndef _H_FUSPEL_PRINT
+#define _H_FUSPEL_PRINT
#include "syntax.h"
#include "graphs.h"
diff --git a/interpreter/syntax.h b/interpreter/syntax.h
index f2043c3..8c3c336 100644
--- a/interpreter/syntax.h
+++ b/interpreter/syntax.h
@@ -1,5 +1,5 @@
-#ifndef _H_SYNTAX
-#define _H_SYNTAX
+#ifndef _H_FUSPEL_SYNTAX
+#define _H_FUSPEL_SYNTAX
#include <stdbool.h>