[libc] fix time () not found when no RT_USING_RTC defined

This commit is contained in:
tanek liang 2017-11-01 19:20:01 +08:00
parent 34ee3dfd60
commit be48c3c419
1 changed files with 9 additions and 0 deletions

View File

@ -327,3 +327,12 @@ int fgetc(FILE *f)
return -1;
}
#endif
#ifndef RT_USING_RTC
time_t time(time_t *t)
{
time_t time_now = 0;
return time_now;
}
#endif