From 98dacf492e2e6f2153455cb4179058578cee20ff Mon Sep 17 00:00:00 2001 From: Marc Kleine-Budde Date: Sun, 4 Apr 2010 09:15:07 +0200 Subject: [PATCH] tail: include sys/vfs.h (if possible) when sys/statfs.h is absent * src/tail.c [HAVE_INOTIFY && !HAVE_SYS_STATFS_H]: Include . --- src/tail.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tail.c b/src/tail.c index 02c4a1a1dc..9e95dee7e6 100644 --- a/src/tail.c +++ b/src/tail.c @@ -56,6 +56,8 @@ # include "fs.h" # if HAVE_SYS_STATFS_H # include +# elif HAVE_SYS_VFS_H +# include # endif #endif -- 2.47.2