From e3c28c3393960f076bb4111dafa3c2b3317d6129 Mon Sep 17 00:00:00 2001 From: Lucian Petrut Date: Fri, 18 Oct 2019 09:19:32 +0000 Subject: [PATCH] os: Add missing include We'll need to explicitly include stddefs.h in order to use size_t with Mingw. Signed-off-by: Lucian Petrut --- src/os/filestore/os_xattr.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/os/filestore/os_xattr.h b/src/os/filestore/os_xattr.h index 15b356196c9..cf98394b2c5 100644 --- a/src/os/filestore/os_xattr.h +++ b/src/os/filestore/os_xattr.h @@ -24,6 +24,8 @@ extern "C" { # define ENOATTR ENODATA #endif +#include + int ceph_os_setxattr(const char *path, const char *name, const void *value, size_t size); int ceph_os_fsetxattr(int fd, const char *name, const void *value, -- 2.39.5