diff options
author | tjr <tjr@FreeBSD.org> | 2002-09-01 07:08:22 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-09-01 07:08:22 +0000 |
commit | 2e5584e86420f659df3bd35d2c10f4f10c11738b (patch) | |
tree | 2b9a13bd73596a27de10f1bd7015dd2fa5693281 /lib/libc/locale/wcstombs.c | |
parent | 8485252733a0bbf11a62b6ea1b8f32022445bb33 (diff) | |
download | FreeBSD-src-2e5584e86420f659df3bd35d2c10f4f10c11738b.zip FreeBSD-src-2e5584e86420f659df3bd35d2c10f4f10c11738b.tar.gz |
Add restrict qualifiers to the arguments of mbstowcs, mbtowc() and
wcstombs().
Diffstat (limited to 'lib/libc/locale/wcstombs.c')
-rw-r--r-- | lib/libc/locale/wcstombs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/locale/wcstombs.c b/lib/libc/locale/wcstombs.c index ed9397a..208aac8 100644 --- a/lib/libc/locale/wcstombs.c +++ b/lib/libc/locale/wcstombs.c @@ -45,8 +45,8 @@ __FBSDID("$FreeBSD$"); size_t wcstombs(s, pwcs, n) - char *s; - const wchar_t *pwcs; + char *__restrict s; + const wchar_t *__restrict pwcs; size_t n; { char buf[MB_LEN_MAX]; |