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 +++--- lib/tevent/ABI/tevent-0.9.9.sigs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'lib') 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) diff --git a/lib/tevent/ABI/tevent-0.9.9.sigs b/lib/tevent/ABI/tevent-0.9.9.sigs index 9c9c7f98f3..9adaba579b 100644 --- a/lib/tevent/ABI/tevent-0.9.9.sigs +++ b/lib/tevent/ABI/tevent-0.9.9.sigs @@ -57,7 +57,7 @@ tevent_req_set_cancel_fn: void (struct tevent_req *, tevent_req_cancel_fn) tevent_req_set_endtime: bool (struct tevent_req *, struct tevent_context *, struct timeval) tevent_req_set_print_fn: void (struct tevent_req *, tevent_req_print_fn) tevent_set_abort_fn: void (void (*)(const char *)) -tevent_set_debug: int (struct tevent_context *, void (*)(void *, enum tevent_debug_level, const char *, struct va_list *), void *) +tevent_set_debug: int (struct tevent_context *, void (*)(void *, enum tevent_debug_level, const char *, va_list), void *) tevent_set_debug_stderr: int (struct tevent_context *) tevent_set_default_backend: void (const char *) tevent_signal_support: bool (struct tevent_context *) -- cgit