Add two missing includes to util.c

util.c was missing sys/select.h and sys/time.h.  On some platforms,
this lead to warnings.
This commit is contained in:
Rob Spanton 2012-11-29 17:36:11 +00:00 committed by Daniel Beer
parent 9f72d296dc
commit f94383d839
1 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,8 @@
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/select.h>
#include <sys/time.h>
#include "sport.h"
#include "util.h"