diff options
author | Martin Pool <mbp@samba.org> | 2001-12-19 06:22:23 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-12-19 06:22:23 +0000 |
commit | fc00418dfc8863a17a98cb621ab98fa522dff01b (patch) | |
tree | 468fb0d09298b5bc02a24d7e6f9fc7c5316e2409 /source3/include | |
parent | 0b73aad2bf19ba56022dcd17ee9cf91d39bd665a (diff) | |
download | samba-fc00418dfc8863a17a98cb621ab98fa522dff01b.tar.gz samba-fc00418dfc8863a17a98cb621ab98fa522dff01b.tar.bz2 samba-fc00418dfc8863a17a98cb621ab98fa522dff01b.zip |
Doc
(This used to be commit 7da982e9268be7eb93fe7d6ad7da5b33ce44181c)
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_ */ |