summaryrefslogtreecommitdiff
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
commit5dc2827b6eaca8f7b833fdf9977528084e3a3ff0 (patch)
tree1ed9050ad7aa50f714b086b5a035ae08cd1db098
parente6be48671d520f952be0b6dc0848569d0d834179 (diff)
downloadsamba-5dc2827b6eaca8f7b833fdf9977528084e3a3ff0.tar.gz
Doc
-rw-r--r--source/lib/talloc.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/lib/talloc.c b/source/lib/talloc.c
index 45f9ed8004c..e20cbbe7cb7 100644
--- a/source/lib/talloc.c
+++ b/source/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;
}
+
+/** @} */