diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-25 07:43:18 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-25 07:43:18 +0000 |
commit | fe8655142206e34169a524dc2063fe5732f126a1 (patch) | |
tree | 08006723f5974c4e6319b7f2728c6c6dc1674f05 /include/arpa | |
parent | 1d8abd74c4ae9b28035b549345f9f736cdb98c10 (diff) |
reinstate external visibility of inet_ntoa_r,
and add it to arpa/inet.h header.
Diffstat (limited to 'include/arpa')
-rw-r--r-- | include/arpa/inet.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/arpa/inet.h b/include/arpa/inet.h index fe3373b88..02233d4e7 100644 --- a/include/arpa/inet.h +++ b/include/arpa/inet.h @@ -52,6 +52,8 @@ extern in_addr_t inet_network (__const char *__cp) __THROW; /* Convert Internet number in IN to ASCII representation. The return value is a pointer to an internal array containing the string. */ extern char *inet_ntoa (struct in_addr __in) __THROW; +/* Recursion-safe flavor */ +extern char *inet_ntoa_r (struct in_addr __in, char *__buf) __THROW; /* Convert from presentation format of an Internet number in buffer starting at CP to the binary network format and store result for |