From: Jim Meyering Date: Wed, 7 Apr 1999 17:43:36 +0000 (+0000) Subject: (difftm): Protoize. X-Git-Tag: FILEUTILS-4_0f~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ff7d4be9b2c75db67aa72275ca990bed0f196a9;p=thirdparty%2Fcoreutils.git (difftm): Protoize. --- diff --git a/lib/getdate.y b/lib/getdate.y index 0407f153f1..857433648e 100644 --- a/lib/getdate.y +++ b/lib/getdate.y @@ -877,8 +877,7 @@ yylex () /* 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);