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 | 7da982e9268be7eb93fe7d6ad7da5b33ce44181c (patch) | |
tree | c064dc041251642b0aafa3a34b6007104cbb555e /source/include/talloc.h | |
parent | 5dc2827b6eaca8f7b833fdf9977528084e3a3ff0 (diff) | |
download | samba-7da982e9268be7eb93fe7d6ad7da5b33ce44181c.tar.gz samba-7da982e9268be7eb93fe7d6ad7da5b33ce44181c.tar.xz samba-7da982e9268be7eb93fe7d6ad7da5b33ce44181c.zip |
Doc
Diffstat (limited to 'source/include/talloc.h')
-rw-r--r-- | source/include/talloc.h | 10 |
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_ */ |