summaryrefslogtreecommitdiffstats
path: root/lib/libc/string/wmemset.c
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2009-02-03 20:25:36 +0000
committerimp <imp@FreeBSD.org>2009-02-03 20:25:36 +0000
commit8d1a287c1a30ae986090c8a6016c4d00b6d9276c (patch)
treef2cddc02e1da83f8c3218c2edfcf3842b5045c78 /lib/libc/string/wmemset.c
parent85ebf973414dfbc79b1b194bd303e31ad364fc40 (diff)
downloadFreeBSD-src-8d1a287c1a30ae986090c8a6016c4d00b6d9276c.zip
FreeBSD-src-8d1a287c1a30ae986090c8a6016c4d00b6d9276c.tar.gz
Fix the functions to match prototypes. The K&R definitions differ
from the ANSI-C prototype due to the 'int promotion' rule.
Diffstat (limited to 'lib/libc/string/wmemset.c')
-rw-r--r--lib/libc/string/wmemset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/wmemset.c b/lib/libc/string/wmemset.c
index 362bdf2..0e96356 100644
--- a/lib/libc/string/wmemset.c
+++ b/lib/libc/string/wmemset.c
@@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$");
#include <wchar.h>
wchar_t *
-wmemset(wchar_t *s, wchar_t *c, size_t n)
+wmemset(wchar_t *s, wchar_t c, size_t n)
{
size_t i;
wchar_t *p;
OpenPOWER on IntegriCloud