about summary refs log tree commit diff
path: root/time
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-05-22 06:14:01 -0700
committerH.J. Lu <hjl.tools@gmail.com>2012-05-22 06:14:01 -0700
commit6226efbda1ee2950d53b830a7aab50cec7421c87 (patch)
treea30355b55be0412b813588430bf73fa46b4c7911 /time
parentb99e4f783c20a35a33efd8b33362fc67b290dc94 (diff)
downloadglibc-6226efbda1ee2950d53b830a7aab50cec7421c87.tar.gz
glibc-6226efbda1ee2950d53b830a7aab50cec7421c87.tar.xz
glibc-6226efbda1ee2950d53b830a7aab50cec7421c87.zip
mktime: merge comment-quoting-style change from gnulib
Diffstat (limited to 'time')
-rw-r--r--time/mktime.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/time/mktime.c b/time/mktime.c
index 556787684f..2ba64eaa10 100644
--- a/time/mktime.c
+++ b/time/mktime.c
@@ -1,4 +1,4 @@
-/* Convert a `struct tm' to a time_t value.
+/* Convert a 'struct tm' to a time_t value.
    Copyright (C) 1993-1999, 2002-2007, 2008 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Paul Eggert <eggert@twinsun.com>.
@@ -26,7 +26,7 @@
 #endif
 
 /* Assume that leap seconds are possible, unless told otherwise.
-   If the host has a `zic' command with a `-L leapsecondfilename' option,
+   If the host has a 'zic' command with a '-L leapsecondfilename' option,
    then it supports leap seconds; otherwise it probably doesn't.  */
 #ifndef LEAP_SECONDS_POSSIBLE
 # define LEAP_SECONDS_POSSIBLE 1
@@ -509,7 +509,7 @@ mktime (struct tm *tp)
 {
 #ifdef _LIBC
   /* POSIX.1 8.1.1 requires that whenever mktime() is called, the
-     time zone names contained in the external variable `tzname' shall
+     time zone names contained in the external variable 'tzname' shall
      be set as if the tzset() function had been called.  */
   __tzset ();
 #endif