summaryrefslogtreecommitdiff
path: root/source/include/talloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/include/talloc.h')
-rw-r--r--source/include/talloc.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/source/include/talloc.h b/source/include/talloc.h
index fb2fb6a0c39..198a27b49bb 100644
--- a/source/include/talloc.h
+++ b/source/include/talloc.h
@@ -22,6 +22,12 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+/**
+ * @ingroup talloc
+ * @{
+ * @sa talloc.c
+ */
+
struct talloc_chunk {
struct talloc_chunk *next;
size_t size;
@@ -50,4 +56,6 @@ char *talloc_vasprintf(TALLOC_CTX *t, const char *fmt, va_list ap)
char *talloc_asprintf(TALLOC_CTX *t, const char *fmt, ...)
PRINTF_ATTRIBUTE(2, 3);
-#endif
+/** @} */
+
+#endif /* ndef _TALLOC_H_ */