From f597d25811576b0a1de005e0d6675332c268e91d Mon Sep 17 00:00:00 2001 From: Jasper Lievisse Adriaanse Date: Mon, 1 Aug 2011 11:15:57 +0200 Subject: [PATCH] Using FD_ZERO requires including string.h for the memset() prototype. --- sockets.c | 1 + sport.c | 1 + 2 files changed, 2 insertions(+) diff --git a/sockets.c b/sockets.c index 9b594d2..98b9525 100644 --- a/sockets.c +++ b/sockets.c @@ -18,6 +18,7 @@ #include #include +#include #include "sockets.h" #include "util.h" diff --git a/sport.c b/sport.c index 9fb0a51..30d919d 100644 --- a/sport.c +++ b/sport.c @@ -19,6 +19,7 @@ #include #include #include +#include #include "sport.h" #include "util.h"