aboutsummaryrefslogtreecommitdiffhomepage
path: root/output.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 /output.h
parentc361d8564c6dc4b142d348b0f8053a9384b8e451 (diff)
Add header guards to the header files.
darcs-hash:20051004151139-35ec8-7af69b9d7647d145dc621f7eaea726e729cff554.gz
Diffstat (limited to 'output.h')
-rw-r--r--output.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/output.h b/output.h
index cf6fc9b6..a3d38bde 100644
--- a/output.h
+++ b/output.h
@@ -1,6 +1,12 @@
/**
Constants for various character classifications. Each character of a command string can be classified as one of the following types.
*/
+
+#ifndef FISH_OUTPUT_H
+#define FISH_OUTPUT_H
+
+#include <wchar.h>
+
enum
{
HIGHLIGHT_NORMAL,
@@ -87,3 +93,4 @@ int writespace( int c );
int output_color_code( const wchar_t *val );
+#endif