aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdlib/wcstombs.c
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2009-04-04 16:00:31 +0000
committerCorinna Vinschen <corinna@vinschen.de>2009-04-04 16:00:31 +0000
commit80317fe50fac71de0a1afec48d0b7936ac2c022e (patch)
treed9fc9f2a8afd63a1420767e4d5053a6ff8bef68b /newlib/libc/stdlib/wcstombs.c
parent4fedce119c521a4bdb816457f76bf4c90244aeb6 (diff)
downloadnewlib-80317fe50fac71de0a1afec48d0b7936ac2c022e.zip
newlib-80317fe50fac71de0a1afec48d0b7936ac2c022e.tar.gz
newlib-80317fe50fac71de0a1afec48d0b7936ac2c022e.tar.bz2
* libc/stdlib/wcstombs.c: Fix datatypes in documentation.
Diffstat (limited to 'newlib/libc/stdlib/wcstombs.c')
-rw-r--r--newlib/libc/stdlib/wcstombs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/stdlib/wcstombs.c b/newlib/libc/stdlib/wcstombs.c
index 83e48da..6f455ea 100644
--- a/newlib/libc/stdlib/wcstombs.c
+++ b/newlib/libc/stdlib/wcstombs.c
@@ -7,13 +7,13 @@ INDEX
ANSI_SYNOPSIS
#include <stdlib.h>
- int wcstombs(const char *<[s]>, wchar_t *<[pwc]>, size_t <[n]>);
+ int wcstombs(char *<[s]>, const wchar_t *<[pwc]>, size_t <[n]>);
TRAD_SYNOPSIS
#include <stdlib.h>
int wcstombs(<[s]>, <[pwc]>, <[n]>)
- const char *<[s]>;
- wchar_t *<[pwc]>;
+ char *<[s]>;
+ const wchar_t *<[pwc]>;
size_t <[n]>;
DESCRIPTION