summaryrefslogtreecommitdiffstats
path: root/babeld/util.h
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2019-06-21 08:14:58 +0200
committerDavid Lamparter <equinox@diac24.net>2019-06-21 08:54:25 +0200
commit8b7454e9c2c6a54588657f6376ea3e1ead4bfc90 (patch)
treea4af7550e91cfc445650c2db6a33994f953f1b3f /babeld/util.h
parentzebra: use MTYPE_STATIC (diff)
downloadfrr-8b7454e9c2c6a54588657f6376ea3e1ead4bfc90.tar.xz
frr-8b7454e9c2c6a54588657f6376ea3e1ead4bfc90.zip
babeld: use MTYPE_STATIC
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'babeld/util.h')
-rw-r--r--babeld/util.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/babeld/util.h b/babeld/util.h
index 7b836c2e4..00a025ff9 100644
--- a/babeld/util.h
+++ b/babeld/util.h
@@ -27,6 +27,9 @@ THE SOFTWARE.
#include "babeld.h"
#include "babel_main.h"
#include "log.h"
+#include "memory.h"
+
+DECLARE_MGROUP(BABELD)
#if defined(i386) || defined(__mc68020__) || defined(__x86_64__)
#define DO_NTOHS(_d, _s) do{ _d = ntohs(*(const unsigned short*)(_s)); }while(0)