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

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

/* Set memory like memset, but different argument order and no return
   value required.  */
void
__aeabi_memset (void *dest, size_t n, int c)
{
  memset (dest, c, n);
}

/* Versions of the above which may assume memory alignment.  */
strong_alias (__aeabi_memset, __aeabi_memset4)
strong_alias (__aeabi_memset, __aeabi_memset8)