#include <stddef.h>#include <string.h>/* See the "Run-time ABI for the ARM Architecture", Section 4.3.4 */void__aeabi_memcpy(void*dest,constvoid*src,size_tn){memcpy(dest,src,n);}//TODO:optimizeaeabi_memcpy4totakeadvantageofthe4-bytealignmentvoid__aeabi_memcpy4(void*dest,constvoid*src,size_tn){memcpy(dest,src,n);}