diff options
author | alc <alc@FreeBSD.org> | 2005-04-07 03:56:03 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2005-04-07 03:56:03 +0000 |
commit | cbb9f3f415d27dacd2fe96602be07cf6ffe152c3 (patch) | |
tree | a8bd21773d4ebb6dcffc7b215e791e8ab63eacac /lib/libc/amd64/string/memcpy.S | |
parent | c885b1d71d8b39af2ead95da1d6ee5bb5e03efd1 (diff) | |
download | FreeBSD-src-cbb9f3f415d27dacd2fe96602be07cf6ffe152c3.zip FreeBSD-src-cbb9f3f415d27dacd2fe96602be07cf6ffe152c3.tar.gz |
Add machine-specific, optimized implementations of bcopy, bzero, memcpy,
memmove, and memset.
PR: 73111
Submitted by: Ville-Pertti Keinonen <will@iki.fi> (taken from NetBSD)
MFC after: 3 weeks
Diffstat (limited to 'lib/libc/amd64/string/memcpy.S')
-rw-r--r-- | lib/libc/amd64/string/memcpy.S | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libc/amd64/string/memcpy.S b/lib/libc/amd64/string/memcpy.S new file mode 100644 index 0000000..bd1e842 --- /dev/null +++ b/lib/libc/amd64/string/memcpy.S @@ -0,0 +1,5 @@ +/* $NetBSD: memcpy.S,v 1.1 2001/06/19 00:25:05 fvdl Exp $ */ +/* $FreeBSD$ */ + +#define MEMCOPY +#include "bcopy.S" |