diff options
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/talloc.h | 10 |
1 files changed, 9 insertions, 1 deletions
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_ */ |