summaryrefslogtreecommitdiff
path: root/ddb
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-11-16 09:33:31 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-11-17 21:42:32 +0100
commit7ae7718d75fc924a66b78ec2b7311f0032770601 (patch)
tree280a819078b166a8d70a0e863f44aa5598fc78b6 /ddb
parent3d5cdd9bcea139b9606ce9e9af8b543fd64c1e9b (diff)
ddb/db_lex.h: add ifndef
* ddb/db_lex.h: Add ifndef.
Diffstat (limited to 'ddb')
-rw-r--r--ddb/db_lex.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/ddb/db_lex.h b/ddb/db_lex.h
index dc9da0a..5900122 100644
--- a/ddb/db_lex.h
+++ b/ddb/db_lex.h
@@ -31,6 +31,9 @@
* Lexical analyzer.
*/
+#ifndef _DDB_DB_LEX_H_
+#define _DDB_DB_LEX_H_
+
#define TOK_STRING_SIZE 64
#define DB_LEX_LINE_SIZE 256
@@ -92,3 +95,5 @@ extern db_expr_t db_radix;
#define tLOG_OR 31
#define tSTRING 32
#define tQUESTION 33
+
+#endif /* _DDB_DB_LEX_H_ */