summaryrefslogtreecommitdiff
path: root/poptint.h
diff options
context:
space:
mode:
authorjbj <jbj>2002-07-24 16:21:59 +0000
committerjbj <jbj>2002-07-24 16:21:59 +0000
commitb2abfbfbc07dbfcbd480fddf7d58aaaf493c206a (patch)
tree54e77ef657f2d7daad576e1cb6693cd5492b1fc5 /poptint.h
parent4ee63a7d3b2331264103cbeae840ccb0b34a20fc (diff)
downloadlibpopt-b2abfbfbc07dbfcbd480fddf7d58aaaf493c206a.tar.gz
- verify signatures/digests retrieved through rpmdbNextIterator().
- imbue %ghost with missingok attribute with --verify (#68933).
Diffstat (limited to 'poptint.h')
-rw-r--r--poptint.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/poptint.h b/poptint.h
index a4f9147..e612e92 100644
--- a/poptint.h
+++ b/poptint.h
@@ -23,17 +23,17 @@ _free(/*@only@*/ /*@null@*/ const void * p)
}
/* Bit mask macros. */
-/*@-exporttype@*/
+/*@-exporttype -redef @*/
typedef unsigned int __pbm_bits;
-/*@=exporttype@*/
+/*@=exporttype =redef @*/
#define __PBM_NBITS (8 * sizeof (__pbm_bits))
#define __PBM_IX(d) ((d) / __PBM_NBITS)
#define __PBM_MASK(d) ((__pbm_bits) 1 << (((unsigned)(d)) % __PBM_NBITS))
-/*@-exporttype@*/
+/*@-exporttype -redef @*/
typedef struct {
__pbm_bits bits[1];
} pbm_set;
-/*@=exporttype@*/
+/*@=exporttype =redef @*/
#define __PBM_BITS(set) ((set)->bits)
#define PBM_ALLOC(d) calloc(__PBM_IX (d) + 1, sizeof(__pbm_bits))