implement arm eabi mem* functions
authorTimo Teräs <timo.teras@iki.fi>
Sun, 30 Aug 2015 15:58:26 +0000 (18:58 +0300)
committerRich Felker <dalias@aerifal.cx>
Mon, 31 Aug 2015 06:35:01 +0000 (06:35 +0000)
commitd8be1bc0193f45d3900f8466f26d1411b7f919c3
tree41385dc00baf7bf6b1516e35d089f0ac43648dcc
parentd18cf76d73df8f9cc751d4b4ba5a635c70c0c645
implement arm eabi mem* functions

these functions are part of the ARM EABI, meaning compilers may
generate references to them. known versions of gcc do not use them,
but llvm does. they are not provided by libgcc, and the de facto
standard seems to be that libc provides them.
arch/arm/src/__aeabi_memclr.c [new file with mode: 0644]
arch/arm/src/__aeabi_memcpy.c [new file with mode: 0644]
arch/arm/src/__aeabi_memmove.c [new file with mode: 0644]
arch/arm/src/__aeabi_memset.c [new file with mode: 0644]