summaryrefslogtreecommitdiffstats
path: root/include/time.h
blob: b1979886add09fbfd8b7aa99a207231b5af91465 (plain)
1
2
3
4
5
6
7
8
#ifdef HAVE_TIME_H
#include_next <time.h>
#endif

#ifndef __isleap
#define __isleap(year)	\
  ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0))
#endif