squeezing for MINIX & bug fix in dumpidf
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user