blob: ac118b7b2e565ea4519f9e1ade81aee5fdb894b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* ISC license. */
#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE
#ifndef _XPG4_2
# define _XPG4_2
#endif
#ifndef _BSD_SOURCE
#define _BSD_SOURCE
#endif
#include <sys/socket.h>
int value = MSG_DONTWAIT ;
|