arch/m68k-amiga: Define the gcc symbol 'start' instead of using .bss
[AROS.git] / compiler / clib / mblen.c
blobcfece4ea83725ad9997dffa4758f3103840a666d
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
5 ISO/ANSI C function mblen().
6 */
8 #include <aros/debug.h>
10 /*****************************************************************************
12 NAME */
14 #include <string.h>
15 #include <stdlib.h>
17 size_t mblen(
19 /* SYNOPSIS */
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 /* FIXME: Implement mblen() properly */
43 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
45 return strlen(s);