/usr/include/rpm/rpmpol.h is in librpm-dev 4.12.0.1+dfsg1-3build3.
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 17 18 19 20 21 22 23 24 25 26 27 28 | #ifndef H_RPMPOL
#define H_RPMPOL
/** \ingroup rpmpol
* \file lib/rpmpol.h
* Structure(s) used for policy sets.
*/
#include <rpm/rpmtypes.h>
#ifdef __cplusplus
extern "C" {
#endif
enum rpmpolFlags_e {
RPMPOL_FLAG_NONE = 0,
RPMPOL_FLAG_BASE = (1 << 0)
};
typedef rpmFlags rpmpolFlags;
#define RPMPOL_TYPE_DEFAULT "default"
#ifdef __cplusplus
}
#endif
#endif /* H_rpmpol */
|