On Tue, Dec 03, 2002 at 01:37:51PM +1100, Tim Robbins wrote: > +#ifndef roundup > +#define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) /* to any y */ > +#endif no need to define roundup here, openssh uses roundup() in other places, too. -m