1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-05 12:22:11 +03:00
This commit is contained in:
Martin Pool
-
parent 5dc2827b6e
commit 7da982e926
2 changed files with 21 additions and 9 deletions

View File

@ -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_ */