diff options
author | Martin Pool <mbp@samba.org> | 2001-12-19 05:02:42 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-12-19 05:02:42 +0000 |
commit | d3abe277ef90534b984ae5d250e4533017e77275 (patch) | |
tree | fdc074d1af99b5a3fc98d903716f995c26d0be22 /source3/include | |
parent | 55f6eefe12d4864724fc4cb0584ef1426e27ff7b (diff) | |
download | samba-d3abe277ef90534b984ae5d250e4533017e77275.tar.gz samba-d3abe277ef90534b984ae5d250e4533017e77275.tar.bz2 samba-d3abe277ef90534b984ae5d250e4533017e77275.zip |
Put PRINTF_ATTRIBUTE on talloc_init_named, talloc_asprintf,
talloc_vasprintf.
(This used to be commit e6be48671d520f952be0b6dc0848569d0d834179)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/talloc.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/include/talloc.h b/source3/include/talloc.h index 8e20cc028a..fb2fb6a0c3 100644 --- a/source3/include/talloc.h +++ b/source3/include/talloc.h @@ -42,4 +42,12 @@ typedef struct { char *name; } TALLOC_CTX; +TALLOC_CTX *talloc_init_named(char const *fmt, ...) PRINTF_ATTRIBUTE(1, 2); + +char *talloc_vasprintf(TALLOC_CTX *t, const char *fmt, va_list ap) + PRINTF_ATTRIBUTE(2, 0); + +char *talloc_asprintf(TALLOC_CTX *t, const char *fmt, ...) + PRINTF_ATTRIBUTE(2, 3); + #endif |