mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-03-15 10:57:04 +00:00
9 lines
432 B
C
9 lines
432 B
C
#include "nest/bird.h"
|
|
|
|
#include "filter/filter.h"
|
|
#include "nest/route.h"
|
|
|
|
_Static_assert(sizeof(struct f_val) >= sizeof(struct eattr), "Structures f_val and eattr not binary compatible!");
|
|
_Static_assert(OFFSETOF(struct f_val, val) == OFFSETOF(struct eattr, u), "Structures f_val and eattr not binary compatible!");
|
|
_Static_assert(sizeof(enum ea_type) == sizeof(enum f_type), "Structures f_val and eattr not binary compatible!");
|