diff options
Diffstat (limited to 'lib/libc/string/memset.c')
-rw-r--r-- | lib/libc/string/memset.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/memset.c b/lib/libc/string/memset.c index 61709c139de..242529ee0f2 100644 --- a/lib/libc/string/memset.c +++ b/lib/libc/string/memset.c @@ -1,4 +1,4 @@ -/* $OpenBSD: memset.c,v 1.6 2008/03/15 21:40:39 ray Exp $ */ +/* $OpenBSD: memset.c,v 1.7 2015/08/31 02:53:57 guenther Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -45,3 +45,4 @@ memset(void *dst, int c, size_t n) } return (dst); } +DEF_STRONG(memset); |