2008-11-27 Craig Howland <howland@LGSInnovations.com>
* libc/argz/argz_add.c: Added #include <argz.h> to get function prototypes. * libc/argz/argz_append.c: Ditto. * libc/argz/argz_count.c: Ditto. * libc/argz/argz_create.c: Ditto. * libc/argz/argz_create_sep.c: Ditto. * libc/argz/argz_delete.c: Ditto. * libc/argz/argz_next.c: Ditto. * libc/argz/argz_stringify.c: Ditto * libc/stdlib/strtod.c: Added #include <stdlib.h> to get function prototypes. * libc/stdlib/wcstoul.c: Added #include <wchar.h> to get function prototypes, corrected traditional usage comment. * libc/include/wchar.h: Added _mbsrtowcs_r() prototype.
This commit is contained in:
parent
7cd48a9bc4
commit
bad5c314f7
|
@ -1,3 +1,20 @@
|
|||
2008-11-27 Craig Howland <howland@LGSInnovations.com>
|
||||
|
||||
* libc/argz/argz_add.c: Added #include <argz.h> to get function
|
||||
prototypes.
|
||||
* libc/argz/argz_append.c: Ditto.
|
||||
* libc/argz/argz_count.c: Ditto.
|
||||
* libc/argz/argz_create.c: Ditto.
|
||||
* libc/argz/argz_create_sep.c: Ditto.
|
||||
* libc/argz/argz_delete.c: Ditto.
|
||||
* libc/argz/argz_next.c: Ditto.
|
||||
* libc/argz/argz_stringify.c: Ditto
|
||||
* libc/stdlib/strtod.c: Added #include <stdlib.h> to get function
|
||||
prototypes.
|
||||
* libc/stdlib/wcstoul.c: Added #include <wchar.h> to get function
|
||||
prototypes, corrected traditional usage comment.
|
||||
* libc/include/wchar.h: Added _mbsrtowcs_r() prototype.
|
||||
|
||||
2008-11-26 Ken Werner <ken.werner@de.ibm.com>
|
||||
|
||||
* libm/machine/spu/headers/acosd2.h: Rebase against current simdmath.
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
* is freely granted, provided that this notice is preserved.
|
||||
*/
|
||||
|
||||
#include <argz.h>
|
||||
#include <errno.h>
|
||||
#include <sys/types.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
* is freely granted, provided that this notice is preserved.
|
||||
*/
|
||||
|
||||
#include <argz.h>
|
||||
#include <errno.h>
|
||||
#include <sys/types.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
#include <_ansi.h>
|
||||
#include <argz.h>
|
||||
#include <stddef.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
* is freely granted, provided that this notice is preserved.
|
||||
*/
|
||||
|
||||
#include <argz.h>
|
||||
#include <errno.h>
|
||||
#include <sys/types.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
* is freely granted, provided that this notice is preserved.
|
||||
*/
|
||||
|
||||
#include <argz.h>
|
||||
#include <errno.h>
|
||||
#include <sys/types.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
* is freely granted, provided that this notice is preserved.
|
||||
*/
|
||||
|
||||
#include <argz.h>
|
||||
#include <errno.h>
|
||||
#include <sys/types.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
* is freely granted, provided that this notice is preserved.
|
||||
*/
|
||||
|
||||
#include <argz.h>
|
||||
#include <errno.h>
|
||||
#include <sys/types.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
#include <_ansi.h>
|
||||
#include <argz.h>
|
||||
#include <stddef.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
|
|
|
@ -48,6 +48,7 @@ size_t _EXFUN(_mbrtowc_r, (struct _reent *, wchar_t * , const char * ,
|
|||
size_t, mbstate_t *));
|
||||
int _EXFUN(mbsinit, (const mbstate_t *));
|
||||
size_t _EXFUN(mbsrtowcs, (wchar_t * , const char ** , size_t, mbstate_t *));
|
||||
size_t _EXFUN(_mbsrtowcs_r, (struct _reent *, wchar_t * , const char ** , size_t, mbstate_t *));
|
||||
size_t _EXFUN(wcrtomb, (char * , wchar_t, mbstate_t *));
|
||||
size_t _EXFUN(_wcrtomb_r, (struct _reent *, char * , wchar_t, mbstate_t *));
|
||||
size_t _EXFUN(wcsrtombs, (char * , const wchar_t ** , size_t, mbstate_t *));
|
||||
|
|
|
@ -112,6 +112,7 @@ THIS SOFTWARE.
|
|||
|
||||
#include <_ansi.h>
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "mprec.h"
|
||||
#include "gdtoa.h"
|
||||
|
|
|
@ -16,7 +16,7 @@ ANSI_SYNOPSIS
|
|||
wchar_t **<[ptr]>, int <[base]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
#include <wchar.h>
|
||||
unsigned long wcstoul(<[s]>, <[ptr]>, <[base]>)
|
||||
wchar_t *<[s]>;
|
||||
wchar_t **<[ptr]>;
|
||||
|
@ -121,6 +121,7 @@ PORTABILITY
|
|||
#include <_ansi.h>
|
||||
#include <limits.h>
|
||||
#include <wctype.h>
|
||||
#include <wchar.h>
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
#include <reent.h>
|
||||
|
|
Loading…
Reference in New Issue