diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2002-08-19 20:32:27 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2002-08-19 20:32:27 +0000 |
commit | 1da6b56aca11f8f1e287a432951ea7e35f274f0c (patch) | |
tree | 7ccb203d946aa7714922b1e8e69c4eb86e6e23b9 | |
parent | e5cb5e37d4754ba880b8844caeaae3a774479b7d (diff) |
Notes
-rw-r--r-- | lib/libc/locale/wcwidth.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/locale/wcwidth.c b/lib/libc/locale/wcwidth.c index ea9fa843ce3d..bc852bca4121 100644 --- a/lib/libc/locale/wcwidth.c +++ b/lib/libc/locale/wcwidth.c @@ -49,8 +49,7 @@ __FBSDID("$FreeBSD$"); #define _CTYPE_SWS 30 /* Bits to shift to get width */ int -wcwidth(wc) - wchar_t wc; +wcwidth(wchar_t wc) { int width; |