freebsd-src/contrib/mandoc/test-recvmsg.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
100 B
C
Raw Normal View History

2017-02-19 17:41:20 +00:00
#include <sys/socket.h>
#include <stddef.h>
int
main(void)
{
return recvmsg(-1, NULL, 0) != -1;
}