2008-07-02 Jeff Johnston <jjohnstn@redhat.com>
* libc/argz/argz_count.c: Include stddef.h to get size_t. * libc/argz/argz_extract.c: Ditto. * libc/argz/argz_stringify.c: Ditto. * libc/search/hash.h: Ditto. * libc/sys/linux/include/sched.h: Ditto. * libc/sys/linux/sys/types.h: Ditto.
This commit is contained in:
parent
a9f7d0a7a7
commit
18a635e315
|
@ -1,3 +1,12 @@
|
|||
2008-07-02 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/argz/argz_count.c: Include stddef.h to get size_t.
|
||||
* libc/argz/argz_extract.c: Ditto.
|
||||
* libc/argz/argz_stringify.c: Ditto.
|
||||
* libc/search/hash.h: Ditto.
|
||||
* libc/sys/linux/include/sched.h: Ditto.
|
||||
* libc/sys/linux/sys/types.h: Ditto.
|
||||
|
||||
2008-07-02 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/machine/mips/strncpy.c (strncpy): Fix logic so unaligned
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
#include <_ansi.h>
|
||||
#include <stddef.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
size_t
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
* is freely granted, provided that this notice is preserved.
|
||||
*/
|
||||
|
||||
#include <stddef.h>
|
||||
#include <argz.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
#include <_ansi.h>
|
||||
#include <stddef.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
void
|
||||
|
|
|
@ -38,6 +38,8 @@
|
|||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
#define __need_size_t
|
||||
#include <stddef.h>
|
||||
|
||||
/* Check that newlib understands the byte order of its target system. */
|
||||
#ifndef BYTE_ORDER
|
||||
|
|
|
@ -22,6 +22,9 @@
|
|||
|
||||
#include <features.h>
|
||||
|
||||
#define __need_size_t
|
||||
#include <stddef.h>
|
||||
|
||||
/* Get type definitions. */
|
||||
#include <bits/types.h>
|
||||
|
||||
|
|
|
@ -50,6 +50,8 @@
|
|||
* libc/include/sys/types.h. Repeat those here and
|
||||
* skip the kernel's definitions. */
|
||||
|
||||
#define __need_size_t
|
||||
#include <stddef.h>
|
||||
#include <sys/config.h>
|
||||
#include <features.h>
|
||||
#include <machine/types.h>
|
||||
|
|
Loading…
Reference in New Issue