- Fix compilation of bsd-snprintf.c on Solaris, fix from Ben Taylor

<bent@clark.net>
This commit is contained in:
Damien Miller 2000-01-22 13:25:13 +11:00
parent ee1c0b3d3b
commit 91427007bc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
20000122
- Fix compilation of bsd-snprintf.c on Solaris, fix from Ben Taylor
<bent@clark.net>
20000120
- Don't use getaddrinfo on AIX
- Update to latest OpenBSD CVS:

View File

@ -44,7 +44,7 @@
#include <setjmp.h>
#ifndef roundup
#define roundup (x, y) ((((x)+((y)-1))/(y))*(y))
#define roundup(x, y) ((((x)+((y)-1))/(y))*(y))
#endif
static int pgsize;