From 91427007bca1c7e064d720820bcafce3573a668d Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Sat, 22 Jan 2000 13:25:13 +1100 Subject: - Fix compilation of bsd-snprintf.c on Solaris, fix from Ben Taylor --- ChangeLog | 4 ++++ bsd-snprintf.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 14005e7aa..d4f7f8e7a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +20000122 + - Fix compilation of bsd-snprintf.c on Solaris, fix from Ben Taylor + + 20000120 - Don't use getaddrinfo on AIX - Update to latest OpenBSD CVS: diff --git a/bsd-snprintf.c b/bsd-snprintf.c index 81a4b284e..c1dcdab4b 100644 --- a/bsd-snprintf.c +++ b/bsd-snprintf.c @@ -44,7 +44,7 @@ #include #ifndef roundup -#define roundup (x, y) ((((x)+((y)-1))/(y))*(y)) +#define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) #endif static int pgsize; -- cgit v1.2.3