diff --git a/lib/asn1/timegm.c b/lib/asn1/timegm.c index af3240ffb..3374e04ab 100644 --- a/lib/asn1/timegm.c +++ b/lib/asn1/timegm.c @@ -2,6 +2,8 @@ RCSID("$Id$"); +#ifndef HAVE_TIMEGM + static int is_leap(unsigned y) { @@ -31,3 +33,5 @@ timegm (struct tm *tm) res += tm->tm_sec; return res; } + +#endif