From: Ken Raeburn Date: Sun, 17 Jul 2011 17:51:35 +0000 (+0000) Subject: Declare gmt_mktime before use X-Git-Tag: krb5-1.10-alpha1~355 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6c8ba612fc43248d990072cd054f77c293d37ffb;p=krb5.git Declare gmt_mktime before use git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25020 dc483132-0cff-0310-8789-dd5450dbe970 --- 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