use same location as .configured, etc, to store .files-touched
[AROS.git] / compiler / clib / mbtowc.c
blob557aee382390915928dc487172875ec04d3ebd72
1 /*
2 Copyright © 2007, The AROS Development Team. All rights reserved.
3 $Id$
5 ISO/ANSI C function mbtowc().
6 */
8 #include <aros/debug.h>
10 /*****************************************************************************
12 NAME */
14 #include <stdlib.h>
16 int mbtowc(
18 /* SYNOPSIS */
19 wchar_t *pwc,
20 const char *s,
21 size_t n)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
30 Not implemented.
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 ******************************************************************************/
42 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
44 return -1;