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 提交者 Daniel Beer
父節點 9f72d296dc
當前提交 f94383d839
共有 1 個檔案被更改,包括 2 行新增0 行删除

查看文件

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