xref: /netbsd-src/external/bsd/mdocml/dist/test-cmsg.c (revision a45db23f655e22f0c2354600d3b3c2cb98abf2dc)
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 }
14