Date: Mon, 01 Jun 2009 17:51:46 -0600 (MDT) From: "M. Warner Losh" <imp@bsdimp.com> To: kmacy@FreeBSD.org Cc: arm@FreeBSD.org Subject: Re: svn commit: r193282 - stable/7/sys/libkern Message-ID: <20090601.175146.255408209.imp@bsdimp.com> In-Reply-To: <200906012209.n51M9gTU094161@svn.freebsd.org> References: <200906012209.n51M9gTU094161@svn.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
In message: <200906012209.n51M9gTU094161@svn.freebsd.org> Kip Macy <kmacy@FreeBSD.org> writes: : Author: kmacy : Date: Mon Jun 1 22:09:42 2009 : New Revision: 193282 : URL: http://svn.freebsd.org/changeset/base/193282 : : Log: : memmove is defined in support.S on arm - don't compile in : : Modified: : stable/7/sys/libkern/memmove.c : : Modified: stable/7/sys/libkern/memmove.c : ============================================================================== : --- stable/7/sys/libkern/memmove.c Mon Jun 1 22:05:08 2009 (r193281) : +++ stable/7/sys/libkern/memmove.c Mon Jun 1 22:09:42 2009 (r193282) : @@ -29,6 +29,7 @@ __FBSDID("$FreeBSD$"); : : #include <sys/libkern.h> : : +#if !defined(__arm__) : void * : memmove(void *dest, const void *src, size_t n) : { : @@ -36,3 +37,4 @@ memmove(void *dest, const void *src, siz : bcopy(src, dest, n); : return (dest); : } : +#endif Ummm, usually we don't bother to even include the .c file in cases like this... Is it this way in -head? Warner
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20090601.175146.255408209.imp>