/usr/include/btrfs/version.h is in btrfs-progs 4.15.1-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #ifndef __LIBBTRFS_VERSION_H__
#define __LIBBTRFS_VERSION_H__
#define BTRFS_LIB_MAJOR 0
#define BTRFS_LIB_MINOR 1
#define BTRFS_LIB_PATCHLEVEL 2
#define BTRFS_LIB_VERSION ( BTRFS_LIB_MAJOR * 10000 + \
BTRFS_LIB_MINOR * 100 + \
BTRFS_LIB_PATCHLEVEL )
#define BTRFS_BUILD_VERSION "Btrfs v4.15.1"
#endif
|