summaryrefslogtreecommitdiff
path: root/zhm/zhm.h
diff options
context:
space:
mode:
authorGravatar David C. Jedlinsky <opus@mit.edu>1987-06-30 23:24:42 +0000
committerGravatar David C. Jedlinsky <opus@mit.edu>1987-06-30 23:24:42 +0000
commit86cbbc339a0cb723c1a7dcd77808b8dacc810457 (patch)
tree7b67918b608e231de1a23179b13989d0108b2180 /zhm/zhm.h
parent32b6354c29409f7d12fe86d89e57bb50b70ec10e (diff)
Added syslog.h include.
Diffstat (limited to 'zhm/zhm.h')
-rw-r--r--zhm/zhm.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/zhm/zhm.h b/zhm/zhm.h
index d7f4b7b..bcee466 100644
--- a/zhm/zhm.h
+++ b/zhm/zhm.h
@@ -16,23 +16,27 @@
#include <zephyr/mit-copyright.h>
#include <zephyr/zephyr.h>
+#include <syslog.h>
#ifdef DEBUG
#define DPR(a) fprintf(stderr, a); fflush(stderr)
#define DPR2(a,b) fprintf(stderr, a, b); fflush(stderr)
+#define Zperr(e) fprintf(stderr, "Error = %d\n", e)
#else
#define DPR(a)
#define DPR2(a,b)
+#define Zperr(e)
#endif
#define ever (;;)
-#define Zperr(e) fprintf(stderr, "Error = %d\n", e)
#define SERV_TIMEOUT 20
-#define NOTICE_TIMEOUT 5
+#define NOTICE_TIMEOUT 10
#define BOOTING 1
#define NOTICES 2
+#define MAXRETRIES 5
+
extern char *malloc();
#endif !__HM_H__