mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-27 11:55:06 +00:00
61d06d6bd1
Approved by: re (kib) MFC after: 1 week
9 lines
100 B
C
9 lines
100 B
C
#include <sys/socket.h>
|
|
#include <stddef.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
return recvmsg(-1, NULL, 0) != -1;
|
|
}
|