From 47bf54b247963af422420debecfcf2f9516af7ba Mon Sep 17 00:00:00 2001 From: Benjamin Poirier Date: Fri, 26 Jul 2013 10:58:45 -0400 Subject: [PATCH] udp.7: Add missing #include directive Using the UDP_CORK socket option documented in udp.7 requires including . Signed-off-by: Benjamin Poirier Signed-off-by: Michael Kerrisk --- man7/udp.7 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/man7/udp.7 b/man7/udp.7 index 313c78d68..e2e723aff 100644 --- a/man7/udp.7 +++ b/man7/udp.7 @@ -16,6 +16,8 @@ udp \- User Datagram Protocol for IPv4 .B #include .br .B #include +.br +.B #include .sp .B udp_socket = socket(AF_INET, SOCK_DGRAM, 0); .SH DESCRIPTION