X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fbasic%2Fxattr-util.h;h=254f5a038a94b18210f4a202b7c32acc4a71eaed;hp=048e53bf704f5d514640a5cca09657329b523b86;hb=d93247127eb2e073a6d3b5bcc67bcc4048d674fe;hpb=b96ed50e3493103d075ff2ce4c3fbad8f26b2e22 diff --git a/src/basic/xattr-util.h b/src/basic/xattr-util.h index 048e53bf7..254f5a038 100644 --- a/src/basic/xattr-util.h +++ b/src/basic/xattr-util.h @@ -1,5 +1,3 @@ -/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ - #pragma once /*** @@ -22,6 +20,7 @@ ***/ #include +#include #include #include "time-util.h" @@ -29,10 +28,12 @@ int getxattr_malloc(const char *path, const char *name, char **value, bool allow_symlink); int fgetxattr_malloc(int fd, const char *name, char **value); +#if 0 /// UNNEEDED by elogind ssize_t fgetxattrat_fake(int dirfd, const char *filename, const char *attribute, void *value, size_t size, int flags); -// UNNEEDED int fd_setcrtime(int fd, usec_t usec); +int fd_setcrtime(int fd, usec_t usec); -// UNNEEDED int fd_getcrtime(int fd, usec_t *usec); -// UNNEEDED int path_getcrtime(const char *p, usec_t *usec); -// UNNEEDED int fd_getcrtime_at(int dirfd, const char *name, usec_t *usec, int flags); +int fd_getcrtime(int fd, usec_t *usec); +int path_getcrtime(const char *p, usec_t *usec); +int fd_getcrtime_at(int dirfd, const char *name, usec_t *usec, int flags); +#endif // 0