1
0
Fork 0
forked from len0rd/rockbox

Move c/h files implementing/defining standard library stuff into a new libc directory, also standard'ify some parts of the code base (almost entirely #include fixes).

This is to a) to cleanup firmware/common and firmware/include a bit, but also b) for Rockbox as an application which should use the host system's c library and headers, separating makes it easy to exclude our files from the build.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25850 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-05-06 21:04:40 +00:00
parent adb506df14
commit 50a6ca39ad
194 changed files with 639 additions and 455 deletions

View file

@ -20,7 +20,7 @@ const short __spm[13] =
(31+28+31+30+31+30+31+31+30+31+30+31),
};
int __isleap(int year) {
static inline 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)); */
@ -36,7 +36,7 @@ struct tm *gmtime(const time_t *timep) {
work=*timep/(SPD);
r.tm_wday=(4+work)%7;
for (i=1970; ; ++i) {
register time_t k=__isleap(i)?366:365;
register time_t k=isleap(i)?366:365;
if (work>=k)
work-=k;
else
@ -46,7 +46,7 @@ struct tm *gmtime(const time_t *timep) {
r.tm_yday=work;
r.tm_mday=1;
if (__isleap(i) && (work>58)) {
if (isleap(i) && (work>58)) {
if (work==59) r.tm_mday=2; /* 29.2. */
work-=1;
}