diff options
author | Tom Lane | 2006-07-15 15:27:14 +0000 |
---|---|---|
committer | Tom Lane | 2006-07-15 15:27:14 +0000 |
commit | 89e2a955894168265e73b1be29da95debefdf169 (patch) | |
tree | 0e487cf70b031682f0d4fd637c472d49909c0d09 /contrib/pgcrypto/imath.c | |
parent | 9b556322c580cf4037f33f1150c02794e0aa15cd (diff) |
Fix some pgcrypto portability issues, per Marko Kreen.
Diffstat (limited to 'contrib/pgcrypto/imath.c')
-rw-r--r-- | contrib/pgcrypto/imath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgcrypto/imath.c b/contrib/pgcrypto/imath.c index 4fef2184211..1b66279b8f4 100644 --- a/contrib/pgcrypto/imath.c +++ b/contrib/pgcrypto/imath.c @@ -3,7 +3,7 @@ Name: imath.c Purpose: Arbitrary precision integer arithmetic routines. Author: M. J. Fromberger <http://www.dartmouth.edu/~sting/> - Info: $Id: imath.c,v 1.1 2006/07/13 04:15:24 neilc Exp $ + Info: $Id: imath.c,v 1.2 2006/07/15 15:27:14 tgl Exp $ Copyright (C) 2002 Michael J. Fromberger, All Rights Reserved. @@ -33,7 +33,7 @@ #include "imath.h" #undef assert -#define assert(TEST) +#define assert(TEST) Assert(TEST) #define TRACEABLE_CLAMP 0 #define TRACEABLE_FREE 0 |