summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/memset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/string/memset.c')
-rw-r--r--src/lib/libc/string/memset.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/string/memset.c b/src/lib/libc/string/memset.c
index 61709c139d..242529ee0f 100644
--- a/src/lib/libc/string/memset.c
+++ b/src/lib/libc/string/memset.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: memset.c,v 1.6 2008/03/15 21:40:39 ray Exp $ */ 1/* $OpenBSD: memset.c,v 1.7 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.
@@ -45,3 +45,4 @@ memset(void *dst, int c, size_t n)
45 } 45 }
46 return (dst); 46 return (dst);
47} 47}
48DEF_STRONG(memset);