summaryrefslogtreecommitdiff
path: root/lib/strftime.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-12-09 21:02:43 +0000
committerJim Meyering <jim@meyering.net>2001-12-09 21:02:43 +0000
commit26061de96f0443974c5f554a2bfe67442065b5f3 (patch)
tree792eacff544b2add36beb256306aa70ddc0a0b89 /lib/strftime.c
parent102ad5c8ff3c2b0f57f286d1be13520e5a7718de (diff)
downloadcoreutils-26061de96f0443974c5f554a2bfe67442065b5f3.tar.xz
(my_strftime_localtime_r): Include this function
definition in the `#if ! HAVE_TM_GMTOFF' block.
Diffstat (limited to 'lib/strftime.c')
-rw-r--r--lib/strftime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strftime.c b/lib/strftime.c
index dea5509b5..cc3a2d568 100644
--- a/lib/strftime.c
+++ b/lib/strftime.c
@@ -191,7 +191,6 @@ my_strftime_gmtime_r (t, tp)
*tp = *l;
return tp;
}
-# endif /* ! HAVE_TM_GMTOFF */
static struct tm *my_strftime_localtime_r __P ((const time_t *, struct tm *));
static struct tm *
@@ -205,6 +204,7 @@ my_strftime_localtime_r (t, tp)
*tp = *l;
return tp;
}
+# endif /* ! HAVE_TM_GMTOFF */
#endif /* ! defined _LIBC */