This source file includes following definitions.
- main
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 #define GNULIB_NAMESPACE gnulib
20 #include <config.h>
21
22 #include <netdb.h>
23
24 #include "signature.h"
25
26
27 #if GNULIB_TEST_GETADDRINFO
28 SIGNATURE_CHECK (GNULIB_NAMESPACE::getaddrinfo, int,
29 (const char *, const char *, const struct addrinfo *,
30 struct addrinfo **));
31 SIGNATURE_CHECK (GNULIB_NAMESPACE::freeaddrinfo, void, (struct addrinfo *));
32 SIGNATURE_CHECK (GNULIB_NAMESPACE::gai_strerror, const char *, (int));
33 SIGNATURE_CHECK (GNULIB_NAMESPACE::getnameinfo, int,
34 (const struct sockaddr *, socklen_t, char *, socklen_t,
35 char *, socklen_t, int));
36 #endif
37
38
39 int
40 main ()
41 {
42 }