From: Ulrich Drepper Date: Thu, 12 Mar 1998 14:30:22 +0000 (+0000) Subject: (_dl_catch_error): Fix prototype and comment. X-Git-Tag: cvs/before-sparc-2_0_x-branch~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14ec2ef16d816150f1a06c00a91e4f146b049172;p=thirdparty%2Fglibc.git (_dl_catch_error): Fix prototype and comment. --- diff --git a/elf/link.h b/elf/link.h index f5db803f069..6c43d3bcec1 100644 --- a/elf/link.h +++ b/elf/link.h @@ -200,12 +200,11 @@ extern void _dl_signal_error (int errcode, const char *errstring); /* Call OPERATE, catching errors from `dl_signal_error'. If there is no - error, *ERRSTRING is set to null. If there is an error, *ERRSTRING and - *OBJECT are set to the strings passed to _dl_signal_error, and the error - code passed is the return value. ERRSTRING if nonzero points to a - malloc'ed string which the caller has to free after use. */ + error, *ERRSTRING is set to null. If there is an error, *ERRSTRING is + set to a string constructed from the strings passed to _dl_signal_error, + and the error code passed is the return value. ERRSTRING if nonzero + points to a malloc'ed string which the caller has to free after use. */ extern int _dl_catch_error (char **errstring, - const char **object, void (*operate) (void)); /* Call OPERATE, receiving errors from `dl_signal_error'. Unlike