123456789101112131415161718192021222324252627282930313233 |
- #include <string.h>
- libc_hidden_proto(bzero)
- void
- __aeabi_memclr (void *dest, size_t n)
- {
- bzero (dest, n);
- }
- strong_alias (__aeabi_memclr, __aeabi_memclr4)
- strong_alias (__aeabi_memclr, __aeabi_memclr8)
|