diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | bsd-snprintf.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20000122 | ||
2 | - Fix compilation of bsd-snprintf.c on Solaris, fix from Ben Taylor | ||
3 | <bent@clark.net> | ||
4 | |||
1 | 20000120 | 5 | 20000120 |
2 | - Don't use getaddrinfo on AIX | 6 | - Don't use getaddrinfo on AIX |
3 | - Update to latest OpenBSD CVS: | 7 | - 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 @@ | |||
44 | #include <setjmp.h> | 44 | #include <setjmp.h> |
45 | 45 | ||
46 | #ifndef roundup | 46 | #ifndef roundup |
47 | #define roundup (x, y) ((((x)+((y)-1))/(y))*(y)) | 47 | #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) |
48 | #endif | 48 | #endif |
49 | 49 | ||
50 | static int pgsize; | 50 | static int pgsize; |