diff options
author | Linus Nordberg <linus@nordu.net> | 2010-11-11 14:57:05 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2010-11-11 14:57:05 +0100 |
commit | 61010c7b868bb7ceef4a04af23e2b139163dd431 (patch) | |
tree | 425592a98e6c5380f298a0692ff534cbc8117b07 /lib/rsp_util.h | |
parent | 8f48dfbad11382b92fc9abaa6fa41756ec087194 (diff) |
Add extern "C" guards to all header files.
Diffstat (limited to 'lib/rsp_util.h')
-rw-r--r-- | lib/rsp_util.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/rsp_util.h b/lib/rsp_util.h index d8d002c..35ecc9e 100644 --- a/lib/rsp_util.h +++ b/lib/rsp_util.h @@ -9,6 +9,10 @@ sizeof(struct sockaddr_in) : \ sizeof(struct sockaddr_in6)) +#if defined (__cplusplus) +extern "C" { +#endif + char *stringcopy(const char *s, int len); char *addr2string(struct sockaddr *addr); struct sockaddr *addr_copy(struct sockaddr *in); @@ -19,6 +23,9 @@ void disable_DF_bit(int socket, struct addrinfo *res); int bindtoaddr(struct addrinfo *addrinfo, int family, int reuse, int v6only); int connecttcp(struct addrinfo *addrinfo, struct addrinfo *src, uint16_t timeout); +#if defined (__cplusplus) +} +#endif /* Local Variables: */ /* c-file-style: "stroustrup" */ |