diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/netinet/in.h | 1 | ||||
-rw-r--r-- | include/stdlib.h | 5 | ||||
-rw-r--r-- | include/time.h | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/include/netinet/in.h b/include/netinet/in.h index 2a57aceb5e..356cc96a0f 100644 --- a/include/netinet/in.h +++ b/include/netinet/in.h @@ -1,6 +1,7 @@ #include <inet/netinet/in.h> extern const struct in6_addr in6addr_any_internal attribute_hidden; +extern const struct in6_addr in6addr_loopback_internal attribute_hidden; /* Bind socket to a privileged IP port. */ extern int bindresvport_internal (int __sockfd, diff --git a/include/stdlib.h b/include/stdlib.h index 48ff8a034d..501fac2702 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -4,6 +4,7 @@ #define __Need_M_And_C #endif +#include <stddef.h> #include <stdlib/stdlib.h> /* Now define the internal interfaces. */ @@ -185,6 +186,10 @@ __strtoull_l (__const char * __restrict __nptr, char **__restrict __endptr, # endif #endif + +extern void * __default_morecore (ptrdiff_t); +libc_hidden_proto (__default_morecore) + #undef __Need_M_And_C #endif /* include/stdlib.h */ diff --git a/include/time.h b/include/time.h index b68df96385..3b63b3dc9c 100644 --- a/include/time.h +++ b/include/time.h @@ -50,6 +50,7 @@ extern struct tm *__localtime_r (__const time_t *__timer, extern struct tm *__gmtime_r (__const time_t *__restrict __timer, struct tm *__restrict __tp); +libc_hidden_proto (__gmtime_r) /* Compute the `struct tm' representation of *T, offset OFFSET seconds east of UTC, |