/usr/include/libr/sdb/config.h is in libradare2-dev 2.3.0+dfsg-2.
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 15 16 | #ifndef CONFIG_H
#define CONFIG_H
#define SDB_KEYSIZE 32
/* only available on linux, and some distros require -lrt */
#define USE_MONOTONIC_CLOCK 0
#if SDB_KEYSIZE == 32
#define SDB_KT ut32
#elif SDB_KEYSIZE == 64
#define SDB_KT ut64
#else
#error Invalid key size
#endif
#endif
|