diff options
Diffstat (limited to 'lib/libc/string/memcpy.c')
-rw-r--r-- | lib/libc/string/memcpy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/memcpy.c b/lib/libc/string/memcpy.c index 1b9715e4717..73136edd722 100644 --- a/lib/libc/string/memcpy.c +++ b/lib/libc/string/memcpy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: memcpy.c,v 1.1 2014/11/30 19:43:56 deraadt Exp $ */ +/* $OpenBSD: memcpy.c,v 1.2 2015/08/31 02:53:57 guenther Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -97,3 +97,4 @@ memcpy(void *dst0, const void *src0, size_t length) done: return (dst0); } +DEF_STRONG(memcpy); |