summaryrefslogtreecommitdiff
path: root/zwgc
diff options
context:
space:
mode:
authorGravatar Greg Hudson <ghudson@mit.edu>1999-10-15 13:15:45 +0000
committerGravatar Greg Hudson <ghudson@mit.edu>1999-10-15 13:15:45 +0000
commit09f178a37124b583aab8c88f30d13f8e6d1c2fef (patch)
tree674a47d62d4598d2c6dafc2488a4a36602c780df /zwgc
parent61e4ec586a1db8ccb3f6463b434cf704760571e6 (diff)
Include errno.h and com_err.h; don't declare things that belong to
them.
Diffstat (limited to 'zwgc')
-rw-r--r--zwgc/error.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zwgc/error.h b/zwgc/error.h
index cf987b8..a09fa70 100644
--- a/zwgc/error.h
+++ b/zwgc/error.h
@@ -18,10 +18,10 @@
#define error_MODULE
#include <stdio.h>
+#include <errno.h>
+#include <com_err.h>
-extern int errno;
extern int error_code;
-extern void com_err();
#define FATAL_TRAP(function_call, message) \
{ error_code = (function_call);\