Fix missing headers

2 header inclusions were missing, one for PATH_MAX (limits.h) and one
for FD_ZERO, FD_SET, ... (sys/select.h)

on glibc, those headers are erroneusly (namespace pollution) pulled in
through other headers, so the author didnt notice.

Signed-Off-By: John Spencer <maillist-cryptsetup@barfooze.de>
This commit is contained in:
John Spencer
2013-02-01 08:36:36 +01:00
committed by Milan Broz
parent 5b8f762ab2
commit 433758e4cb
2 changed files with 2 additions and 0 deletions

View File

@@ -28,6 +28,7 @@
#include <dirent.h>
#include <fcntl.h>
#include <errno.h>
#include <limits.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "utils_dm.h"