use larger string heap
[rrq/fuse_xattrs.git] / passthrough.h
index 81f8970b922799c46eda9eaeb2d1a718f198fccd..ebc9a1b2a349715f664b84701fda9c0d256aaf2c 100644 (file)
@@ -9,7 +9,11 @@
   See the file COPYING.
 */
 
-#include <fuse.h>
+#ifdef __APPLE__
+    #include <osxfuse/fuse.h>
+#else
+    #include <fuse.h>
+#endif
 
 int xmp_getattr(const char *path, struct stat *stbuf);
 int xmp_access(const char *path, int mask);
@@ -25,7 +29,7 @@ int xmp_link(const char *from, const char *to);
 int xmp_chmod(const char *path, mode_t mode);
 int xmp_chown(const char *path, uid_t uid, gid_t gid);
 int xmp_truncate(const char *path, off_t size);
-int xmp_utimens(const char *path, const struct timespec ts[2], struct fuse_file_info *fi);
+int xmp_utimens(const char *path, const struct timespec ts[2]);
 int xmp_open(const char *path, struct fuse_file_info *fi);
 int xmp_read(const char *path, char *buf, size_t size, off_t offset, struct fuse_file_info *fi);
 int xmp_write(const char *path, const char *buf, size_t size, off_t offset, struct fuse_file_info *fi);