summaryrefslogtreecommitdiff
path: root/lib/talloc/talloc.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-03-22 09:47:59 +0100
committerVolker Lendecke <vl@samba.org>2009-03-22 09:47:59 +0100
commitcce595d1fcaa84d09ae9e261b5e20da03ca38137 (patch)
treec3a88385f0ff7542b5246fa235a2a6813d79eca6 /lib/talloc/talloc.h
parentf15a0305f3982a9bc54aac0690e25a52f1021bb2 (diff)
downloadsamba-cce595d1fcaa84d09ae9e261b5e20da03ca38137.tar.gz
samba-cce595d1fcaa84d09ae9e261b5e20da03ca38137.tar.bz2
samba-cce595d1fcaa84d09ae9e261b5e20da03ca38137.zip
Revert "Document _talloc"
This reverts commit 2ce70d4f5a30973b4cc083dbbb38b519007a31bd.
Diffstat (limited to 'lib/talloc/talloc.h')
-rw-r--r--lib/talloc/talloc.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/lib/talloc/talloc.h b/lib/talloc/talloc.h
index 01e7326ccc..f3aa6def63 100644
--- a/lib/talloc/talloc.h
+++ b/lib/talloc/talloc.h
@@ -635,16 +635,7 @@ typedef void TALLOC_CTX;
#define TALLOC_FREE(ctx) do { talloc_free(ctx); ctx=NULL; } while(0)
-/**
- * \brief Allocate untyped, unnamed memory
- * \param context The talloc context to hang the result off
- * \param size Number of char's that you want to allocate
- * \return The allocated memory chunk
- * \ingroup talloc_internal
- *
- * Essentially the same as talloc_size() without setting the chunk name to the
- * current file/line number.
- */
+/* The following definitions come from talloc.c */
void *_talloc(const void *context, size_t size);
/**