From: John Carr Date: Mon, 3 Jun 1991 12:39:52 +0000 (+0000) Subject: max and min are declared in kdc_util.h X-Git-Tag: krb5-1.0-beta1~37 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=faba93e10406b97f266718ded0eddfdfbf887f53;p=krb5.git max and min are declared in kdc_util.h git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2133 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/kdc/replay.c b/src/kdc/replay.c index 5bca9a27c..b25bbee3c 100644 --- a/src/kdc/replay.c +++ b/src/kdc/replay.c @@ -38,10 +38,6 @@ static int calls = 0; static int max_hits_per_entry = 0; static int num_entries = 0; -#ifndef max -#define max(a,b) (((a) > (b)) ? (a) : (b)) -#endif - #define STALE_TIME 2*60 /* two minutes */ #define STALE(ptr) (abs((ptr)->timein - timenow) >= STALE_TIME)