repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use dos.library/CreateNewProc() instead of alib/CreateNewProcTags()
[tangerine.git]
/
compiler
/
clib
/
wcstombs.c
blob
bf2535f1620f3d7b8981ab24d2cb98e2f11e2b93
1
/*
2
Copyright © 2007, The AROS Development Team. All rights reserved.
3
$Id$
4
5
ISO/ANSI C function wcstombs().
6
*/
7
8
#include <aros/debug.h>
9
10
#include <stdlib.h>
11
12
size_t
wcstombs
(
char
*
s
,
const wchar_t
*
pwcs
,
size_t
n
) {
13
AROS_FUNCTION_NOT_IMPLEMENTED
(
"arosc"
);
14
15
return
(
size_t
) -
1
;
16
}