summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Moore <pmoore@redhat.com>2013-04-19 15:26:49 -0400
committerPaul Moore <pmoore@redhat.com>2013-04-19 15:26:49 -0400
commit3bcbcd0389f6e7ee7fba0a3fee4c30e21c3625f0 (patch)
tree100881a13c3d8466053c4c16d63a39e8925195e5
parent3733174a72365674c856d0bc1b5623ee1cf51346 (diff)
downloadlibseccomp-3bcbcd0389f6e7ee7fba0a3fee4c30e21c3625f0.tar.gz
db: remove unused macros
Signed-off-by: Paul Moore <pmoore@redhat.com>
-rw-r--r--src/db.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/db.h b/src/db.h
index 203a0b4..97c8758 100644
--- a/src/db.h
+++ b/src/db.h
@@ -81,14 +81,6 @@ struct db_arg_chain_tree {
(((x)->mask & (y)->mask) != (y)->mask))))
#define db_chain_leaf(x) \
(((x)->act_t_flg != 0) || ((x)->act_f_flg != 0))
-#define db_chain_zombie(x) \
- (((x)->nxt_t == NULL) && ((x)->nxt_f == NULL) && \
- ((x)->act_t_flg == 0) && ((x)->act_f_flg == 0))
-#define db_chain_one_nxt(x) \
- (((x)->nxt_t != NULL && (x)->nxt_f == NULL) || \
- ((x)->nxt_t == NULL && (x)->nxt_f != NULL))
-#define db_chain_one_action(x) \
- ((x)->act_t_flg != (x)->act_f_flg)
#define db_chain_eq_result(x,y) \
((((x)->nxt_t != NULL && (y)->nxt_t != NULL) || \
((x)->nxt_t == NULL && (y)->nxt_t == NULL)) && \