summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/memccpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/string/memccpy.c')
-rw-r--r--src/lib/libc/string/memccpy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/string/memccpy.c b/src/lib/libc/string/memccpy.c
index 485c55fcab..635061b8cb 100644
--- a/src/lib/libc/string/memccpy.c
+++ b/src/lib/libc/string/memccpy.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: memccpy.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */ 1/* $OpenBSD: memccpy.c,v 1.7 2015/08/31 02:53:57 guenther Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 1990, 1993 4 * Copyright (c) 1990, 1993
@@ -46,3 +46,4 @@ memccpy(void *t, const void *f, int c, size_t n)
46 } 46 }
47 return (0); 47 return (0);
48} 48}
49DEF_WEAK(memccpy);