From 1b5b34e79147863532af4a149c41174be1a31e7b Mon Sep 17 00:00:00 2001 From: Willem Jan Withagen Date: Wed, 29 Jun 2016 22:34:38 +0200 Subject: [PATCH] net_handler.cc: make it more compatible with BSDs According the Linux manual page: POSIX.1-2001 does not require the inclusion of , and this header file is not required on Linux. However, some historical (BSD) implementations required this header file, and portable applications are probably wise to include it. Submitted-by: Willem Jan Withagen --- src/msg/async/net_handler.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/msg/async/net_handler.cc b/src/msg/async/net_handler.cc index ee1965676050..497c1cb77c60 100644 --- a/src/msg/async/net_handler.cc +++ b/src/msg/async/net_handler.cc @@ -14,6 +14,7 @@ * */ +#include #include #include #include -- 2.47.3