Deleted Added
full compact
36c36
< * $Id: memalloc.c,v 1.2 1994/09/24 02:57:50 davidg Exp $
---
> * $Id: memalloc.c,v 1.3 1996/09/01 10:20:42 peter Exp $
210c210
< int newlen = stacknleft * 2 + 100;
---
> int newlen = ALIGN(stacknleft * 2 + 100);
229c229
< stacknleft += ALIGN(newlen); /* we just allocated */
---
> stacknleft += newlen; /* we just allocated */