Merge pull request #1420 from armink/fix_libc

[libc/armlibc] Remove time() on stubs.c.
This commit is contained in:
Bernard Xiong 2018-05-10 16:08:39 +08:00 committed by GitHub
commit c136242986
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 9 deletions

View File

@ -327,12 +327,3 @@ 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