aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Christopher Harrison <ch12@sanger.ac.uk>2015-07-30 11:05:34 +0100
committerGravatar Christopher Harrison <ch12@sanger.ac.uk>2015-07-30 11:05:34 +0100
commit7d687b939d42f46b7493a3ea7ace83dd0aef4091 (patch)
tree01e2c3a33de695a07559f6923a915718e275afee /lib
parent0af0d9740b09811696706f1dd5f9f9478b7c40c4 (diff)
Added fuse_pkgversion function
Returns the full PACKAGE_VERSION string, per autoconf
Diffstat (limited to 'lib')
-rw-r--r--lib/helper.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/helper.c b/lib/helper.c
index e5550c9..2690334 100644
--- a/lib/helper.c
+++ b/lib/helper.c
@@ -332,3 +332,7 @@ int fuse_version(void)
return FUSE_VERSION;
}
+const char *fuse_pkgversion(void)
+{
+ return PACKAGE_VERSION;
+}