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
add a missing section header table index conversion
[tangerine.git]
/
compiler
/
clib
/
wctomb.c
blob
11558bfc9bd71e3f9a20a8619c5e1f0c94d6c232
1
/*
2
Copyright © 2007, The AROS Development Team. All rights reserved.
3
$Id$
4
5
ISO/ANSI C function wctomb().
6
*/
7
8
#include <aros/debug.h>
9
10
#include <stdlib.h>
11
12
int
wctomb
(
char
*
s
,
wchar_t
wchar
) {
13
AROS_FUNCTION_NOT_IMPLEMENTED
(
"arosc"
);
14
15
return
-
1
;
16
}