From 89e2a955894168265e73b1be29da95debefdf169 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 15 Jul 2006 15:27:14 +0000 Subject: Fix some pgcrypto portability issues, per Marko Kreen. --- contrib/pgcrypto/imath.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/pgcrypto/imath.c') 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 - 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 -- cgit v1.2.3