From 9922a795d44e624387c74e1097bf2507fe2b2d16 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 13 Sep 2004 05:01:15 +0000 Subject: r2308: make talloc_vasprintf() available outside talloc.c (This used to be commit a3a15f9d1a3b51cb7099b5f3adb8401dfc37793d) --- source4/lib/talloc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source4') diff --git a/source4/lib/talloc.c b/source4/lib/talloc.c index 036d06a2c2..e9fd7e8baf 100644 --- a/source4/lib/talloc.c +++ b/source4/lib/talloc.c @@ -395,8 +395,7 @@ char *talloc_strndup(void *t, const char *p, size_t n) return ret; } -static char *talloc_vasprintf(void *t, const char *fmt, va_list ap) PRINTF_ATTRIBUTE(2,0); -static char *talloc_vasprintf(void *t, const char *fmt, va_list ap) +char *talloc_vasprintf(void *t, const char *fmt, va_list ap) { int len; char *ret; -- cgit