squeezing for MINIX & bug fix in dumpidf

This commit is contained in:
eck
1990-07-19 17:16:36 +00:00
parent 779c77ac21
commit 539ab11985
6 changed files with 23 additions and 18 deletions

View File

@@ -7,4 +7,8 @@
#include "sizes.h"
#define ATW(arg) ((((arg) + word_size - 1) / word_size) * word_size)
#if word_size==2 || word_size==4
#define ATW(arg) (((arg) + (word_size - 1)) & ~ (word_size - 1))
#else
#define ATW(arg) ((((arg) + ((int)word_size - 1)) / word_size) * word_size)
#endif