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