From 6c8ba612fc43248d990072cd054f77c293d37ffb Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Sun, 17 Jul 2011 17:51:35 +0000 Subject: [PATCH] Declare gmt_mktime before use git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25020 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/support/gmt_mktime.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/util/support/gmt_mktime.c b/src/util/support/gmt_mktime.c index f7f717e9e..7655364d9 100644 --- a/src/util/support/gmt_mktime.c +++ b/src/util/support/gmt_mktime.c @@ -18,6 +18,10 @@ #include "k5-gmt_mktime.h" +#if !HAVE_TIMEGM || TEST_LEAP +static time_t gmt_mktime(struct tm *t); +#endif + /* * Use the nonstandard timegm() (if available) to convert broken-down * UTC times into time_t values. Use our custom gmt_mktime() if -- 2.26.2