summaryrefslogtreecommitdiffstats
path: root/lib/libc/locale/wctomb.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/locale/wctomb.c')
-rw-r--r--lib/libc/locale/wctomb.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/libc/locale/wctomb.c b/lib/libc/locale/wctomb.c
index 2a225f4..da934b2 100644
--- a/lib/libc/locale/wctomb.c
+++ b/lib/libc/locale/wctomb.c
@@ -44,17 +44,16 @@ __FBSDID("$FreeBSD$");
#include <rune.h>
int
-wctomb(s, wchar)
- char *s;
- wchar_t wchar;
+wctomb(char *s, wchar_t wchar)
{
char *e;
- if (s == 0)
- return (0); /* No support for state dependent encodings. */
+ if (s == NULL)
+ /* No support for state dependent encodings. */
+ return (0);
- if (wchar == 0) {
- *s = 0;
+ if (wchar == L'\0') {
+ *s = '\0';
return (1);
}
OpenPOWER on IntegriCloud