Merge pull request #936 from TanekLiang/stubs_time
[libc] fix time () not found when no RT_USING_RTC defined
This commit is contained in:
commit
40c0155bdf
|
@ -327,3 +327,12 @@ int fgetc(FILE *f)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef RT_USING_RTC
|
||||||
|
time_t time(time_t *t)
|
||||||
|
{
|
||||||
|
time_t time_now = 0;
|
||||||
|
|
||||||
|
return time_now;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue