Revert "Document _talloc"
authorVolker Lendecke <vl@samba.org>
Sun, 22 Mar 2009 08:47:59 +0000 (09:47 +0100)
committerVolker Lendecke <vl@samba.org>
Sun, 22 Mar 2009 08:47:59 +0000 (09:47 +0100)
This reverts commit 2ce70d4f5a30973b4cc083dbbb38b519007a31bd.

lib/talloc/talloc.h

index 01e7326ccc602edd6f754a04134d5f67d629ba33..f3aa6def63eef49fbeb4e93798ecd755ce6b5765 100644 (file)
@@ -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);
 
 /**