1*9508192eSchristos #include <stddef.h> 2*9508192eSchristos #include <sys/socket.h> 3*9508192eSchristos 4*9508192eSchristos int main(void)5*9508192eSchristosmain(void) 6*9508192eSchristos { 7*9508192eSchristos struct msghdr msg; 8*9508192eSchristos 9*9508192eSchristos msg.msg_control = NULL; 10*9508192eSchristos msg.msg_controllen = 0; 11*9508192eSchristos 12*9508192eSchristos return CMSG_FIRSTHDR(&msg) != NULL; 13*9508192eSchristos } 14