You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
357 B
21 lines
357 B
/* Sample program for configure to test IPv6 support on target
|
|
platforms. We check for the required IPv6 data structures. */
|
|
|
|
#if defined(__hpux)
|
|
#define _HPUX_SOURCE
|
|
#endif
|
|
|
|
#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;
|
|
}
|