URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uC-libc/] [include/] [bsd/] [tzfile.h] - Rev 1778
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef _BSD_TZFILE_H #define _BSD_TZFILE_H #define SECSPERDAY (60*60*24) #define DAYSPERNYEAR 365 #define DAYSPERLYEAR 366 #define isleap(y) (((y) % 4) == 0 && ((y) % 100) != 0 || ((y) % 400) == 0) #endif /* _BSD_TZFILE_H */
Go to most recent revision | Compare with Previous | Blame | View Log