LAst commit before a complete refactoring
This commit is contained in:
parent
5647866779
commit
e858d5eeae
2 changed files with 6 additions and 1 deletions
5
bionic.c
5
bionic.c
|
@ -685,6 +685,11 @@ void _memset(void *dst0, char val, size_t length)
|
|||
*ptr++ = val;
|
||||
}
|
||||
|
||||
void __aeabi_memset(void *dst0, char val, size_t length)
|
||||
{
|
||||
_memset(dst0, val, length);
|
||||
}
|
||||
|
||||
int _strlen(const char *s)
|
||||
{
|
||||
int i = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue