summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/ipv6/ipv6test.cpp
blob: 7b6a4732ce53155016fc89951d37bdde43010863 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Sample program for configure to test IPv6 support on target
platforms. We check for the required IPv6 data structures. */

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>

int main()
{
    sockaddr_in6 tmp;
    sockaddr_storage tmp2;
    (void)tmp;
    (void)tmp2;

    return 0;
}