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