aboutsummaryrefslogtreecommitdiffhomepage
path: root/proc.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 /proc.h
parentc361d8564c6dc4b142d348b0f8053a9384b8e451 (diff)
Add header guards to the header files.
darcs-hash:20051004151139-35ec8-7af69b9d7647d145dc621f7eaea726e729cff554.gz
Diffstat (limited to 'proc.h')
-rw-r--r--proc.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/proc.h b/proc.h
index c8f44380..c92a6d10 100644
--- a/proc.h
+++ b/proc.h
@@ -8,6 +8,15 @@
*/
+#ifndef FISH_PROC_H
+#define FISH_PROC_H
+
+#include <wchar.h>
+#include <signal.h>
+#include <unistd.h>
+
+#include "util.h"
+
/**
Describes what type of IO operation an io_data_t represents
*/
@@ -273,3 +282,4 @@ void proc_update_jiffies();
*/
void proc_sanity_check();
+#endif