]> git.eshelyaron.com Git - emacs.git/commitdiff
(my_strftime_localtime_r): Remove `defined but unused' warning.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 25 May 2003 17:44:14 +0000 (17:44 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 25 May 2003 17:44:14 +0000 (17:44 +0000)
src/strftime.c

index e5953152aa0827f2279597b1f24fd0f88ed924cd..ecfed2af3986793b4e4326bb6a16a8528cd9b20a 100644 (file)
@@ -1,4 +1,6 @@
-/* Copyright (C) 1991,92,93,94,95,96,97,98,99,2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991,92,93,94,95,96,97,98,99,2000,2003
+             Free Software Foundation, Inc.
+
    This file is part of the GNU Emacs.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -198,7 +200,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 *
@@ -212,6 +213,8 @@ my_strftime_localtime_r (t, tp)
   *tp = *l;
   return tp;
 }
+# endif /* ! HAVE_TM_GMTOFF */
+
 #endif /* ! defined _LIBC */