use same location as .configured, etc, to store .files-touched
[AROS.git] / compiler / clib / mbstowcs.c
blob514a1ba39af4a56ef86ff11116de4f1da85ae322
1 /*
2 Copyright © 2007, The AROS Development Team. All rights reserved.
3 $Id$
5 ISO/ANSI C function mbstowcs().
6 */
8 #include <aros/debug.h>
10 /*****************************************************************************
12 NAME */
14 #include <stdlib.h>
16 size_t mbstowcs(
18 /* SYNOPSIS */
19 wchar_t *pwcs,
20 const char *s,
21 size_t n)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
39 ******************************************************************************/
41 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
43 return (size_t) -1;