changeset 1777:372368af7f4e

(difftm): Protoize.
author Jim Meyering <jim@meyering.net>
date Wed, 07 Apr 1999 17:43:36 +0000
parents 4c319718aadd
children c30d7ad98237
files lib/getdate.y
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib/getdate.y
+++ b/lib/getdate.y
@@ -877,8 +877,7 @@
 
 /* Yield A - B, measured in seconds.  */
 static long
-difftm (a, b)
-     struct tm *a, *b;
+difftm (struct tm *a, struct tm *b)
 {
   int ay = a->tm_year + (TM_YEAR_ORIGIN - 1);
   int by = b->tm_year + (TM_YEAR_ORIGIN - 1);