summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2001-12-19 06:00:19 +0000
committerMartin Pool <mbp@samba.org>2001-12-19 06:00:19 +0000
commit0b73aad2bf19ba56022dcd17ee9cf91d39bd665a (patch)
treeac44956ebbeaf0d10eaf3878455cdc010d536011 /source3
parentd3abe277ef90534b984ae5d250e4533017e77275 (diff)
downloadsamba-0b73aad2bf19ba56022dcd17ee9cf91d39bd665a.tar.gz
samba-0b73aad2bf19ba56022dcd17ee9cf91d39bd665a.tar.bz2
samba-0b73aad2bf19ba56022dcd17ee9cf91d39bd665a.zip
Doc
(This used to be commit 5dc2827b6eaca8f7b833fdf9977528084e3a3ff0)
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/talloc.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/lib/talloc.c b/source3/lib/talloc.c
index 45f9ed8004..e20cbbe7cb 100644
--- a/source3/lib/talloc.c
+++ b/source3/lib/talloc.c
@@ -20,7 +20,11 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* this is a very simple temporary memory allocator. To use it do the following:
+/**
+ @defgroup talloc Simple memory allocator
+ @{
+
+ This is a very simple temporary memory allocator. To use it do the following:
1) when you first want to allocate a pool of meomry use
talloc_init() and save the resulting context pointer somewhere
@@ -225,3 +229,5 @@ char *talloc_strdup(TALLOC_CTX *t, const char *p)
return ret;
}
+
+/** @} */