/usr/include/lo10k1/version.h is in liblo10k1-dev 1.0.27-2ubuntu3.
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 | /*
* version.h
*/
#define LD10K1_LIB_MAJOR 0 /**< major number of library version */
#define LD10K1_LIB_MINOR 1 /**< minor number of library version */
#define LD10K1_LIB_SUBMINOR 8 /**< subminor number of library version */
/** library version */
#define LD10K1_LIB_VERSION ((LD10K1_LIB_MAJOR<<16)|\
(LD10K1_LIB_MINOR<<8)|\
LD10K1_LIB_SUBMINOR)
/** library version (string) */
#define LD10K1_LIB_VERSION_STR "0.1.8p1"
|