diff options
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r-- | include/fuse_common.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h index 1cfbaf3..ef7e85a 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -31,6 +31,10 @@ #error Please add -D_FILE_OFFSET_BITS=64 to your compile flags! #endif +#ifdef __cplusplus +extern "C" { +#endif + /** Information about open files */ struct fuse_file_info { /** Open flags. Available in open() and release() */ @@ -72,4 +76,8 @@ int fuse_mount(const char *mountpoint, const char *opts); */ void fuse_unmount(const char *mountpoint); +#ifdef __cplusplus +} +#endif + #endif /* _FUSE_COMMON_H_ */ |