aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/locale/mbstowcs.c
diff options
context:
space:
mode:
authorTim J. Robbins <tjr@FreeBSD.org>2002-09-01 07:08:22 +0000
committerTim J. Robbins <tjr@FreeBSD.org>2002-09-01 07:08:22 +0000
commit9771f1e24e2aadcee0298a295f5b1c3882b34fb0 (patch)
tree2b9a13bd73596a27de10f1bd7015dd2fa5693281 /lib/libc/locale/mbstowcs.c
parentefc8456c2e9301c306cb1a120e81420152ad3173 (diff)
Add restrict qualifiers to the arguments of mbstowcs, mbtowc() and
wcstombs().
Notes
Notes: svn path=/head/; revision=102762
Diffstat (limited to 'lib/libc/locale/mbstowcs.c')
-rw-r--r--lib/libc/locale/mbstowcs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/locale/mbstowcs.c b/lib/libc/locale/mbstowcs.c
index b473f89d33b7..f27f8978ba3a 100644
--- a/lib/libc/locale/mbstowcs.c
+++ b/lib/libc/locale/mbstowcs.c
@@ -45,8 +45,8 @@ __FBSDID("$FreeBSD$");
size_t
mbstowcs(pwcs, s, n)
- wchar_t *pwcs;
- const char *s;
+ wchar_t *__restrict pwcs;
+ const char *__restrict s;
size_t n;
{
char const *e;