QNX7.0 seems to be using header <sys/statvfs.h> instead of <sys/statfs.h>
This commit is contained in:
Francis ANDRE
2018-09-13 08:26:00 +02:00
committed by GitHub
parent 933977bd05
commit fe8bda7720

View File

@@ -23,7 +23,7 @@
#if defined(POCO_OS_FAMILY_BSD) #if defined(POCO_OS_FAMILY_BSD)
#include <sys/param.h> #include <sys/param.h>
#include <sys/mount.h> #include <sys/mount.h>
#elif (POCO_OS == POCO_OS_SOLARIS) #elif (POCO_OS == POCO_OS_SOLARIS) || (POCO_OS == POCO_OS_QNX)
#include <sys/statvfs.h> #include <sys/statvfs.h>
#else #else
#include <sys/statfs.h> #include <sys/statfs.h>