Add aeabi strong aliases.

This commit is contained in:
matt 2013-01-28 06:23:44 +00:00
parent afc5014a73
commit 59bc6bed3d
3 changed files with 15 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: memcpy_arm.S,v 1.2 2008/04/28 20:22:52 martin Exp $ */
/* $NetBSD: memcpy_arm.S,v 1.3 2013/01/28 06:23:44 matt Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@ -31,6 +31,10 @@
#include <machine/asm.h>
#if defined(__ARM_EABI__)
STRONG_ALIAS(__aeabi_memcpy, memcpy)
#endif
/*
* This is one fun bit of code ...
* Some easy listening music is suggested while trying to understand this

View File

@ -1,4 +1,4 @@
/* $NetBSD: memmove.S,v 1.3 2008/04/28 20:22:52 martin Exp $ */
/* $NetBSD: memmove.S,v 1.4 2013/01/28 06:23:44 matt Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@ -31,6 +31,10 @@
#include <machine/asm.h>
#if defined(__ARM_EABI__) && !defined(BCOPY)
STRONG_ALIAS(__aeabi_memmove, memmove)
#endif
#ifndef _BCOPY
/* LINTSTUB: Func: void *memmove(void *, const void *, size_t) */
ENTRY(memmove)

View File

@ -1,4 +1,4 @@
/* $NetBSD: memset.S,v 1.2 2012/12/12 15:46:05 matt Exp $ */
/* $NetBSD: memset.S,v 1.3 2013/01/28 06:23:44 matt Exp $ */
/*
* Copyright 2003 Wasabi Systems, Inc.
@ -68,6 +68,10 @@
#include <machine/asm.h>
#if defined(__ARM_EABI__) && !defined(BZER0)
STRONG_ALIAS(__aeabi_memset, memset)
#endif
/*
* memset: Sets a block of memory to the specified value
*