mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-13 18:06:01 +00:00
d4c7f01e37
The header is part of the public API and not used by any other code so move it to the other files. Signed-off-by: David Sterba <dsterba@suse.com>
15 lines
423 B
C
15 lines
423 B
C
#ifndef __LIBBTRFS_VERSION_H__
|
|
#define __LIBBTRFS_VERSION_H__
|
|
|
|
#define BTRFS_LIB_MAJOR @LIBBTRFS_MAJOR@
|
|
#define BTRFS_LIB_MINOR @LIBBTRFS_MINOR@
|
|
#define BTRFS_LIB_PATCHLEVEL @LIBBTRFS_PATCHLEVEL@
|
|
|
|
#define BTRFS_LIB_VERSION ( BTRFS_LIB_MAJOR * 10000 + \
|
|
BTRFS_LIB_MINOR * 100 + \
|
|
BTRFS_LIB_PATCHLEVEL )
|
|
|
|
#define BTRFS_BUILD_VERSION "Btrfs @PACKAGE_VERSION@"
|
|
|
|
#endif
|