emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r102430: Convert definitions to stand


From: Dan Nicolaescu
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102430: Convert definitions to standard C.
Date: Thu, 18 Nov 2010 08:49:30 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102430
committer: Dan Nicolaescu <address@hidden>
branch nick: trunk
timestamp: Thu 2010-11-18 08:49:30 -0800
message:
  Convert definitions to standard C.
  
  * src/strftime.c (my_strftime_gmtime_r, my_strftime_localtime_r)
  (tm_diff): Convert definitions to standard C.
  (extra_args_spec_iso): Remove, unused.
modified:
  src/ChangeLog
  src/strftime.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-11-18 03:54:14 +0000
+++ b/src/ChangeLog     2010-11-18 16:49:30 +0000
@@ -1,3 +1,9 @@
+2010-11-18  Dan Nicolaescu  <address@hidden>
+
+       * strftime.c (my_strftime_gmtime_r, my_strftime_localtime_r)
+       (tm_diff): Convert definitions to standard C.
+       (extra_args_spec_iso): Remove, unused.
+
 2010-11-18  Jan Djärv  <address@hidden>
 
        * xsettings.c (init_gconf): Check HAVE_G_TYPE_INIT.

=== modified file 'src/strftime.c'
--- a/src/strftime.c    2010-11-16 06:44:51 +0000
+++ b/src/strftime.c    2010-11-18 16:49:30 +0000
@@ -179,11 +179,8 @@
    Similarly for localtime_r.  */
 
 # if ! HAVE_TM_GMTOFF
-static struct tm *my_strftime_gmtime_r (const time_t *, struct tm *);
 static struct tm *
-my_strftime_gmtime_r (t, tp)
-     const time_t *t;
-     struct tm *tp;
+my_strftime_gmtime_r (const time_t *t, struct tm *tp)
 {
   struct tm *l = gmtime (t);
   if (! l)
@@ -192,11 +189,8 @@
   return tp;
 }
 
-static struct tm *my_strftime_localtime_r (const time_t *, struct tm *);
 static struct tm *
-my_strftime_localtime_r (t, tp)
-     const time_t *t;
-     struct tm *tp;
+my_strftime_localtime_r (const time_t *t, struct tm *tp)
 {
   struct tm *l = localtime (t);
   if (! l)
@@ -380,11 +374,8 @@
 /* Yield the difference between *A and *B,
    measured in seconds, ignoring leap seconds.  */
 # define tm_diff ftime_tm_diff
-static int tm_diff (const struct tm *, const struct tm *);
 static int
-tm_diff (a, b)
-     const struct tm *a;
-     const struct tm *b;
+tm_diff (const struct tm *a, const struct tm *b)
 {
   /* Compute intervening leap days correctly even if year is negative.
      Take care to avoid int overflow in leap day calculations,
@@ -451,7 +442,6 @@
 #ifdef my_strftime
 # define extra_args , ut, ns
 # define extra_args_spec , int ut, int ns
-# define extra_args_spec_iso , int ut, int ns
 #else
 # ifdef COMPILE_WIDE
 #  define my_strftime wcsftime
@@ -462,7 +452,6 @@
 # endif
 # define extra_args
 # define extra_args_spec
-# define extra_args_spec_iso
 /* We don't have this information in general.  */
 # define ut 0
 # define ns 0
@@ -471,15 +460,9 @@
 #if !defined _LIBC && !defined(WINDOWSNT) && HAVE_TZNAME && HAVE_TZSET
   /* Solaris 2.5 tzset sometimes modifies the storage returned by localtime.
      Work around this bug by copying *tp before it might be munged.  */
-  size_t _strftime_copytm (char *, size_t, const char *,
-                           const struct tm * extra_args_spec_iso);
   size_t
-  my_strftime (s, maxsize, format, tp extra_args)
-      CHAR_T *s;
-      size_t maxsize;
-      const CHAR_T *format;
-      const struct tm *tp;
-      extra_args_spec
+  my_strftime (CHAR_T *s, size_t maxsize, const CHAR_T *format,
+              const struct tm *tp extra_args_spec)
   {
     struct tm tmcopy;
     tmcopy = *tp;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]