aboutsummaryrefslogtreecommitdiffhomepage
path: root/wildcard.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 /wildcard.h
parentc361d8564c6dc4b142d348b0f8053a9384b8e451 (diff)
Add header guards to the header files.
darcs-hash:20051004151139-35ec8-7af69b9d7647d145dc621f7eaea726e729cff554.gz
Diffstat (limited to 'wildcard.h')
-rw-r--r--wildcard.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/wildcard.h b/wildcard.h
index 27c74d3f..c7478b0b 100644
--- a/wildcard.h
+++ b/wildcard.h
@@ -7,6 +7,13 @@
*/
+#ifndef FISH_WILDCARD_H
+#define FISH_WILDCARD_H
+
+#include <wchar.h>
+
+#include "util.h"
+
/*
These constants are outside the 31 bit character space of USC4,
thogh they may clash with WEOF. I need to use characters outside of
@@ -78,3 +85,4 @@ int wildcard_complete( const wchar_t *str,
const wchar_t *(*desc_func)(const wchar_t *),
array_list_t *out );
+#endif