File: test-recvmsg.c

package info (click to toggle)
mdocml 1.14.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 10,520 kB
  • sloc: ansic: 37,110; makefile: 1,129; sh: 570; perl: 413
file content (8 lines) | stat: -rw-r--r-- 100 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#include <sys/socket.h>
#include <stddef.h>

int
main(void)
{
	return recvmsg(-1, NULL, 0) != -1;
}