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:
parent
9f72d296dc
commit
f94383d839
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue