diff options
| author | David Lamparter <equinox@diac24.net> | 2021-02-24 11:56:41 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2021-11-10 10:39:17 +0100 |
| commit | b0993fb2013444b3ac9162d37ad8f7471d952d51 (patch) | |
| tree | 2879ae90e36775674fe93383c7682d30e9bc5123 | |
| parent | 34e5d7e884d658dd9c7f689d111dd33243a8571c (diff) | |
lib: add missing include in typerb.h
The RB-tree macros use memset(), so we need to #include <string.h>
Signed-off-by: David Lamparter <equinox@diac24.net>
| -rw-r--r-- | lib/typerb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/typerb.h b/lib/typerb.h index d22d864aae..75a1de77b3 100644 --- a/lib/typerb.h +++ b/lib/typerb.h @@ -20,6 +20,7 @@ #ifndef _FRR_TYPERB_H #define _FRR_TYPERB_H +#include <string.h> #include "typesafe.h" #ifdef __cplusplus |
