summaryrefslogtreecommitdiffstats
path: root/bootstrap_cmds/migcom.tproj/mig_machine.h
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap_cmds/migcom.tproj/mig_machine.h')
-rw-r--r--bootstrap_cmds/migcom.tproj/mig_machine.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/bootstrap_cmds/migcom.tproj/mig_machine.h b/bootstrap_cmds/migcom.tproj/mig_machine.h
new file mode 100644
index 0000000..aab5801
--- /dev/null
+++ b/bootstrap_cmds/migcom.tproj/mig_machine.h
@@ -0,0 +1,16 @@
+#if !defined(_MIG_MACHINE_H)
+#define _MIG_MACHINE_H
+
+#define machine_alignment(SZ,ESZ) \
+(((SZ) = ((SZ) + 3) & ~3), (SZ) += (ESZ))
+
+#define machine_padding(BYTES) \
+((BYTES & 3) ? (4 - (BYTES & 3)) : 0)
+
+#ifndef NBBY
+#define NBBY 8
+#endif
+
+#define PACK_MESSAGES TRUE
+
+#endif