From bb5faa250a1dde0687bb7ea57c0cbcd2a4a0ecac Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Mon, 11 Apr 2022 08:41:04 -0400 Subject: [PATCH] add more structs --- src/bin/radsizes.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/bin/radsizes.c b/src/bin/radsizes.c index 8e3693c582c..af24ce8363d 100644 --- a/src/bin/radsizes.c +++ b/src/bin/radsizes.c @@ -4,14 +4,22 @@ #include #include #include +#include int main(UNUSED int argc, UNUSED char **argv) { #define SIZEOF(_struct) printf("%-24s\t%zu bytes\n", STRINGIFY(_struct), sizeof(_struct)) + SIZEOF(fr_dlist_t); + SIZEOF(fr_dlist_head_t); + SIZEOF(fr_pair_t); SIZEOF(fr_pair_list_t); SIZEOF(fr_rb_node_t); + + SIZEOF(fr_tlist_t); + SIZEOF(fr_tlist_head_t); + SIZEOF(fr_value_box_t); SIZEOF(tmpl_t); -- 2.47.3