Welcome to mirror list, hosted at ThFree Co, Russian Federation.

aeabi_memclr.c « arm « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 179a7b290a994b9b2f39706bbc40654300508703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <string.h>
#include "aeabi.h"

/* Clear memory.  */
void
__aeabi_memclr (void *dest, size_t n)
{
  memset (dest, 0, n);
}

/* Versions of the above which may assume memory alignment.  */
strong_alias (__aeabi_memclr, __aeabi_memclr4)
strong_alias (__aeabi_memclr, __aeabi_memclr8)