Fix build error for QNX SDP7.0

- Use statvfs instead of statfs
This commit is contained in:
Dooeui 2019-08-10 21:27:42 +09:00
parent dfb29ad296
commit 61a49ccb98

View File

@ -35,7 +35,7 @@
#include <utime.h>
#include <cstring>
#if (POCO_OS == POCO_OS_SOLARIS)
#if (POCO_OS == POCO_OS_SOLARIS) || (POCO_OS == POCO_OS_QNX)
#define STATFSFN statvfs
#define STATFSSTRUCT statvfs
#else