]> Savannah Git Hosting - gnulib.git/commitdiff
mktime: fix _LIBC typo
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 19 Sep 2018 21:26:49 +0000 (14:26 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 19 Sep 2018 21:27:29 +0000 (14:27 -0700)
* lib/mktime.c (mktime): Fix typo (misspelled "_LIBC").

ChangeLog
lib/mktime.c

index b9d7b30d6aca2277b28bedf576ffff74acdc4df3..80841cb302bc1be58c9b21072bd918bf2e3d78c5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-09-19  Paul Eggert  <eggert@cs.ucla.edu>
+
+       mktime: fix _LIBC typo
+       * lib/mktime.c (mktime): Fix typo (misspelled "_LIBC").
+
 2018-09-19  Norihiro Tanaka  <noritnk@kcn.ne.jp>
 
        dfa: optimization for state merge
index 4ff74901e44080540e270ddb3d260921011bcedc..1404ee9f1ff653e228539b5cbfbf069cf6887e05 100644 (file)
@@ -527,7 +527,7 @@ mktime (struct tm *tp)
      be set as if the tzset() function had been called.  */
   __tzset ();
 
-# if defined __LIBC || NEED_MKTIME_WORKING
+# if defined _LIBC || NEED_MKTIME_WORKING
   static mktime_offset_t localtime_offset;
   return __mktime_internal (tp, __localtime_r, &localtime_offset);
 # else