このページを編集する際は、編集に関する方針に従ってください。
* att_align aligns the given offset as needed for a datum of alignment * requirement attalign. The cases are tested in what is hopefully something * like their frequency of occurrence.
#define att_align(cur_offset, attalign) \ ( \
((attalign) == 'i') ? INTALIGN(cur_offset) : \ (((attalign) == 'c') ? ((long)(cur_offset)) : \ (((attalign) == 'd') ? DOUBLEALIGN(cur_offset) : \ ( \ AssertMacro((attalign) == 's'), \ SHORTALIGN(cur_offset) \ ))) \
)
更新日 | 更新者 | 更新内容 |