From 7aa4c11fc4c25df6ea25dfe28d3dca851b91f909 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 18 Apr 2010 18:21:04 +1000 Subject: build: more adjustments for the ABI type name maps - use 'va_list' instead of 'struct __va_list_tag *' Using the C name for va_list is preferable - add support for negative ABI name matches in abi_match=. That is used to exlude ldb_*module_ops from the ldb ABI - don't include the ldb module ops or backend ops in the ABI --- lib/talloc/ABI/talloc-2.0.2.sigs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/talloc/ABI/talloc-2.0.2.sigs') diff --git a/lib/talloc/ABI/talloc-2.0.2.sigs b/lib/talloc/ABI/talloc-2.0.2.sigs index b244fc1b8c..6e236d52ac 100644 --- a/lib/talloc/ABI/talloc-2.0.2.sigs +++ b/lib/talloc/ABI/talloc-2.0.2.sigs @@ -55,8 +55,8 @@ talloc_strndup_append_buffer: char *(char *, const char *, size_t) talloc_total_blocks: size_t (const void *) talloc_total_size: size_t (const void *) talloc_unlink: int (const void *, void *) -talloc_vasprintf: char *(const void *, const char *, struct va_list *) -talloc_vasprintf_append: char *(char *, const char *, struct va_list *) -talloc_vasprintf_append_buffer: char *(char *, const char *, struct va_list *) +talloc_vasprintf: char *(const void *, const char *, va_list) +talloc_vasprintf_append: char *(char *, const char *, va_list) +talloc_vasprintf_append_buffer: char *(char *, const char *, va_list) talloc_version_major: int (void) talloc_version_minor: int (void) -- cgit