diff options
Diffstat (limited to 'inet/netinet/in.h')
-rw-r--r-- | inet/netinet/in.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/inet/netinet/in.h b/inet/netinet/in.h index e57d9e0457..7d9f3277e5 100644 --- a/inet/netinet/in.h +++ b/inet/netinet/in.h @@ -231,10 +231,13 @@ struct ipv6_mreq this was a short-sighted decision since on different systems the types may have different representations but the values are always the same. */ -extern uint32_t ntohl __P ((uint32_t __netlong)) __attribute__ ((__const__)); -extern uint16_t ntohs __P ((uint16_t __netshort)) __attribute__ ((__const__)); -extern uint32_t htonl __P ((uint32_t __hostlong)) __attribute__ ((__const__)); -extern uint16_t htons __P ((uint16_t __hostshort)) __attribute__ ((__const__)); +extern uint32_t ntohl (uint32_t __netlong) __THROW __attribute__ ((__const__)); +extern uint16_t ntohs (uint16_t __netshort) + __THROW __attribute__ ((__const__)); +extern uint32_t htonl (uint32_t __hostlong) + __THROW __attribute__ ((__const__)); +extern uint16_t htons (uint16_t __hostshort) + __THROW __attribute__ ((__const__)); #include <endian.h> @@ -288,7 +291,7 @@ extern uint16_t htons __P ((uint16_t __hostshort)) __attribute__ ((__const__)); (((uint32_t *) (a))[3] == ((uint32_t *) (b))[3])) /* Bind socket to a privileged IP port. */ -extern int bindresvport __P ((int __sockfd, struct sockaddr_in *__sock_in)); +extern int bindresvport (int __sockfd, struct sockaddr_in *__sock_in) __THROW; |