summaryrefslogtreecommitdiff
path: root/src/sysdeps/trylsock.c
blob: e588d65eaf32de8d3b3760e0b9204238077a544d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ISC license. */

#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE

#ifndef _XPG4_2
#define _XPG4_2
#endif

#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif

#include <sys/socket.h>

int main (void)
{
  shutdown(0, 0) ;
  return 0 ;
}