diff options
Diffstat (limited to 'Build/source/texk/ps2pkm/util.c')
-rw-r--r-- | Build/source/texk/ps2pkm/util.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Build/source/texk/ps2pkm/util.c b/Build/source/texk/ps2pkm/util.c index 21fb13b43a9..81afafb9516 100644 --- a/Build/source/texk/ps2pkm/util.c +++ b/Build/source/texk/ps2pkm/util.c @@ -66,12 +66,8 @@ char *vm_alloc(bytes) { char *answer; - /* Round to next LONG multiple (32-bit) */ -#if defined(sun) || defined(__hpux) || defined(__alpha) + /* Align returned bytes to 64-bit boundary */ bytes = (bytes + 7) & ~7; -#else - bytes = (bytes + 3) & ~3; -#endif /* take space from what is left otherwise allocate another CHUNK */ if (bytes > vm_free) |