summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libugly/isleap.c
blob: dcfa1ced6c258ec8548faf6c044e3cb76af6cb8b (plain)
1
2
3
4
5
6
int __isleap(int year) {
  /* every fourth year is a leap year except for century years that are
   * not divisible by 400. */
/*  return (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)); */
  return (!(year%4) && ((year%100) || !(year%400)));
}