aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser.h
diff options
context:
space:
mode:
authorGravatar James Vega <jamessan@jamessan.com>2005-10-05 01:11:39 +1000
committerGravatar James Vega <jamessan@jamessan.com>2005-10-05 01:11:39 +1000
commite27664b13b11070e561fdd313ca0a5b9950c2c46 (patch)
treeef35a6b3fb51a462076e626c15ba1d3714ce0177 /parser.h
parentc361d8564c6dc4b142d348b0f8053a9384b8e451 (diff)
Add header guards to the header files.
darcs-hash:20051004151139-35ec8-7af69b9d7647d145dc621f7eaea726e729cff554.gz
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/parser.h b/parser.h
index e89931e1..04b091e0 100644
--- a/parser.h
+++ b/parser.h
@@ -2,6 +2,15 @@
The fish parser.
*/
+#ifndef FISH_PARSER_H
+#define FISH_PARSER_H
+
+#include <wchar.h>
+
+#include "proc.h"
+#include "util.h"
+#include "parser.h"
+
/**
block_t represents a block of commands.
*/
@@ -267,3 +276,4 @@ void parser_destroy();
*/
int parser_is_help( wchar_t *s, int min_match );
+#endif