[BACK]Return to tzfile.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/Attic/tzfile.h between version 1.2 and 1.3

version 1.2, 1997/09/21 10:45:59 version 1.3, 1998/03/30 06:53:47
Line 149 
Line 149 
 ** that will probably do.  ** that will probably do.
 */  */
   
 #define isleap(y) (((y) % 4) == 0 && ((y) % 100) != 0 || ((y) % 400) == 0)  #define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
   
 #endif /* !_TZFILE_H_ */  #endif /* !_TZFILE_H_ */

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3