Commit 61ca31c9 61ca31c9e0e6f52eee9e1749033460d2675cb3b1 by Sergey Poznyakoff

Added a clarifying comment.

1 parent 63ce23d3
...@@ -42,6 +42,7 @@ static int month_start[]= ...@@ -42,6 +42,7 @@ static int month_start[]=
42 31 28 31 30 31 30 31 31 30 31 30 31 42 31 28 31 30 31 30 31 31 30 31 30 31
43 */ 43 */
44 44
45 /* NOTE: ignore GCC warning. The precedence of operators is OK here */
45 #define leap_year(y) ((y) % 4 == 0 && (y) % 100 != 0 || (y) % 400 == 0) 46 #define leap_year(y) ((y) % 4 == 0 && (y) % 100 != 0 || (y) % 400 == 0)
46 47
47 static int 48 static int
......