summaryrefslogtreecommitdiffstats
path: root/src/vty/vector.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vty/vector.c')
-rw-r--r--src/vty/vector.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/vty/vector.c b/src/vty/vector.c
index c5a99af3..b95e15c3 100644
--- a/src/vty/vector.c
+++ b/src/vty/vector.c
@@ -27,6 +27,11 @@
#include <osmocom/core/talloc.h>
#include <string.h>
+/*! \addtogroup vector
+ * @{
+ * \brief Generic vector routines, used by VTY internally
+ */
+
void *tall_vty_vec_ctx;
/* Initialize vector : allocate memory and return vector. */
@@ -190,3 +195,5 @@ unsigned int vector_count(vector v)
return count;
}
+
+/*! @} */