mirror of
https://github.com/darlinghq/darling-bootstrap_cmds.git
synced 2024-11-27 06:10:30 +00:00
17 lines
279 B
C
17 lines
279 B
C
#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
|