secondary cache feature in vm.
[minix.git] / lib / libc / ansi / wctomb.c
blob1afc0c5622ec3081a5ad376c4c7e32f9920165a7
1 /*
2 * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3 * See the copyright notice in the ACK home directory, in the file "Copyright".
4 */
5 /* $Header$ */
7 #include <stdlib.h>
9 int
10 /* was: wctomb(char *s, wchar_t wchar)
11 * This conflicts with prototype, so it was changed to:
13 wctomb(char *s, wchar_t wchar)
15 if (!s) return 0; /* no state dependent codings */
17 *s = wchar;
18 return 1;