mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 00:58:21 -05:00
13 lines
174 B
C
13 lines
174 B
C
#include <stddef.h>
|
|
#include <sys/socket.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
struct msghdr msg;
|
|
|
|
msg.msg_control = NULL;
|
|
msg.msg_controllen = 0;
|
|
|
|
return CMSG_FIRSTHDR(&msg) != NULL;
|
|
}
|