* include/ifaddrs.h: Get uint32_t definition.

* posix/tst-rfc3484.c: Update fake __check_pf implementation.
	* posix/tst-rfc3484-2.c: Likewise.
This commit is contained in:
Ulrich Drepper 2006-04-20 06:27:35 +00:00
parent f9d07577ce
commit 86e0544901
4 changed files with 11 additions and 2 deletions

View file

@ -1,5 +1,9 @@
2006-04-19 Ulrich Drepper <drepper@redhat.com>
* include/ifaddrs.h: Get uint32_t definition.
* posix/tst-rfc3484.c: Update fake __check_pf implementation.
* posix/tst-rfc3484-2.c: Likewise.
* sysdeps/unix/sysv/linux/kernel-features.h: Define
__ASSUME_PROC_SELF_FD_SYMLINK.
* sysdeps/unix/sysv/linux/ttyname.c: Cleanups. Avoid compatibility

View file

@ -1,6 +1,7 @@
#ifndef _IFADDRS_H
#include <inet/ifaddrs.h>
#include <stdbool.h>
#include <stdint.h>
libc_hidden_proto (getifaddrs)
libc_hidden_proto (freeifaddrs)

View file

@ -11,9 +11,11 @@
void
attribute_hidden
__check_pf (bool *p1, bool *p2)
__check_pf (bool *p1, bool *p2, struct in6addrinfo **in6ai, size_t *in6ailen)
{
*p1 = *p2 = true;
*in6ai = NULL;
*in6ailen = 0;
}
int
__idna_to_ascii_lz (const char *input, char **output, int flags)

View file

@ -11,9 +11,11 @@
void
attribute_hidden
__check_pf (bool *p1, bool *p2)
__check_pf (bool *p1, bool *p2, struct in6addrinfo **in6ai, size_t *in6ailen)
{
*p1 = *p2 = true;
*in6ai = NULL;
*in6ailen = 0;
}
int
__idna_to_ascii_lz (const char *input, char **output, int flags)