diff options
author | David C. Jedlinsky <opus@mit.edu> | 1987-10-06 16:36:04 +0000 |
---|---|---|
committer | David C. Jedlinsky <opus@mit.edu> | 1987-10-06 16:36:04 +0000 |
commit | c846fdeb423937fd9260ba94392e9279dfb5eb83 (patch) | |
tree | 15a4c5a8873b94d701493dd50d75d77e13c616bd /zhm | |
parent | f7acf447ef157e3da0ba27021b1891b280a7a106 (diff) |
Changes consistent with split of hm.c
Diffstat (limited to 'zhm')
-rw-r--r-- | zhm/zhm.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -17,6 +17,9 @@ #include <zephyr/mit-copyright.h> #include <zephyr/zephyr.h> #include <syslog.h> +#include <sys/socket.h> +#include <sys/param.h> +#include <netdb.h> #ifdef DEBUG #define DPR(a) fprintf(stderr, a); fflush(stderr) @@ -39,4 +42,16 @@ extern char *malloc(); +#ifdef vax +#define MACHINE "vax" +#define ok +#endif vax +#ifdef ibm032 +#define MACHINE "rt" +#define ok +#endif ibm032 +#ifndef ok +#define MACHINE "unknown" +#endif ok + #endif !__HM_H__ |