From fc00418dfc8863a17a98cb621ab98fa522dff01b Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 19 Dec 2001 06:22:23 +0000 Subject: Doc (This used to be commit 7da982e9268be7eb93fe7d6ad7da5b33ce44181c) --- source3/include/talloc.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'source3/include') diff --git a/source3/include/talloc.h b/source3/include/talloc.h index fb2fb6a0c3..198a27b49b 100644 --- a/source3/include/talloc.h +++ b/source3/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_ */ -- cgit