From 6c9a77897ffc9323910cfdb25bf32dae44adbb53 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Wed, 14 Sep 2011 08:19:35 -0600 Subject: opendir: avoid compile warning If HAVE_OPENDIR but also REPLACE_FCHDIR, then errno was used without including the proper header. * lib/opendir.c (includes): Always include errno.h. Reported by Tatsuro MATSUOKA. Signed-off-by: Eric Blake --- lib/opendir.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/opendir.c') diff --git a/lib/opendir.c b/lib/opendir.c index cb7f67c101..06c611f2e1 100644 --- a/lib/opendir.c +++ b/lib/opendir.c @@ -19,6 +19,8 @@ /* Specification. */ #include +#include + #if HAVE_OPENDIR /* Override opendir(), to keep track of the open file descriptors. @@ -26,7 +28,6 @@ #else -# include # include # include -- cgit v1.2.1