aboutsummaryrefslogtreecommitdiffhomepage
path: root/input.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 /input.h
parentc361d8564c6dc4b142d348b0f8053a9384b8e451 (diff)
Add header guards to the header files.
darcs-hash:20051004151139-35ec8-7af69b9d7647d145dc621f7eaea726e729cff554.gz
Diffstat (limited to 'input.h')
-rw-r--r--input.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/input.h b/input.h
index 35eec3a9..5bf54699 100644
--- a/input.h
+++ b/input.h
@@ -5,6 +5,11 @@ inputrc information for key bindings.
*/
+#ifndef FISH_INPUT_H
+#define FISH_INPUT_H
+
+#include <wchar.h>
+
/**
Key codes for inputrc-style keyboard functions that are passed on
to the caller of input_read()
@@ -107,3 +112,4 @@ void input_parse_inputrc_line( wchar_t *cmd );
*/
wchar_t input_get_code( wchar_t *name );
+#endif