]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/mandoc/test-cmsg.c
Import lib9p 9d5aee77bcc1bf0e79b0a3bfefff5fdf2146283c.
[FreeBSD/FreeBSD.git] / contrib / mandoc / test-cmsg.c
1 #include <stddef.h>
2 #include <sys/socket.h>
3
4 int
5 main(void)
6 {
7         struct msghdr    msg;
8
9         msg.msg_control = NULL;
10         msg.msg_controllen = 0;
11
12         return CMSG_FIRSTHDR(&msg) != NULL;
13 }