[libc] Update libc.

1. Add POSIX termios implementation;
2. Add POSIX signals implementation;
3. Add stdio for each libc.
This commit is contained in:
bernard
2017-10-15 22:41:59 +08:00
parent b27c7e4826
commit 5c7b16d00b
37 changed files with 1404 additions and 343 deletions

View File

@@ -35,7 +35,7 @@ void *realloc(void *rmem, rt_size_t newsize)
void *calloc(rt_size_t nelem, rt_size_t elsize)
{
return rt_calloc(nelem, elsize);
return rt_calloc(nelem, elsize);
}
void free(void *rmem)