diff options
author | Jim Meyering <jim@meyering.net> | 1999-04-07 17:43:36 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-04-07 17:43:36 +0000 |
commit | 1ff7d4be9b2c75db67aa72275ca990bed0f196a9 (patch) | |
tree | 762dcf535ae0977a157851ad9201a24e80902b7c /lib | |
parent | 43dcc7ef211c2eb29477f5cb11a07ee5092e74a1 (diff) | |
download | coreutils-1ff7d4be9b2c75db67aa72275ca990bed0f196a9.tar.xz |
(difftm): Protoize.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/getdate.y | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/getdate.y b/lib/getdate.y index 0407f153f..857433648 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); |