* locale/setlocale.c: Change _nl_category_names into a string.
[glibc.git] / include / ifaddrs.h
blobd790fcbe870b5cff2668a606d41afd93de0e34ea
1 #ifndef _IFADDRS_H
2 #include <inet/ifaddrs.h>
3 #include <stdbool.h>
4 #include <stdint.h>
6 libc_hidden_proto (getifaddrs)
7 libc_hidden_proto (freeifaddrs)
9 struct in6addrinfo
11 enum {
12 in6ai_deprecated = 1,
13 in6ai_temporary = 2
14 } flags;
15 uint32_t addr[4];
18 extern void __check_pf (bool *seen_ipv4, bool *seen_ipv6,
19 struct in6addrinfo **in6ai, size_t *in6ailen)
20 attribute_hidden;
22 #endif /* ifaddrs.h */