]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(_dl_catch_error): Fix prototype and comment.
authorUlrich Drepper <drepper@redhat.com>
Thu, 12 Mar 1998 14:30:22 +0000 (14:30 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 12 Mar 1998 14:30:22 +0000 (14:30 +0000)
elf/link.h

index f5db803f0692f152c3e44451c7a3c99507677809..6c43d3bcec12e24ed3fe97a09e93b94b0250b000 100644 (file)
@@ -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