From: Ulrich Drepper Date: Sat, 3 Aug 2002 03:54:03 +0000 (+0000) Subject: (__assert_fail): Fix typo in comment. X-Git-Tag: cvs/glibc-2-3~578 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c04ccaa789bc546f5d4b1da3448a76f5c991a4bd;p=platform%2Fupstream%2Fglibc.git (__assert_fail): Fix typo in comment. --- diff --git a/assert/assert.c b/assert/assert.c index 334382b..cbbed21 100644 --- a/assert/assert.c +++ b/assert/assert.c @@ -42,7 +42,6 @@ extern const char *__progname; # include FATAL_PREPARE_INCLUDE #endif -#undef __assert_fail void __assert_fail (const char *assertion, const char *file, unsigned int line, const char *function) @@ -69,7 +68,7 @@ __assert_fail (const char *assertion, const char *file, unsigned int line, (void) fflush (stderr); - /* We have to free the buffer since the appplication might catch the + /* We have to free the buffer since the application might catch the SIGABRT. */ free (buf); } @@ -82,4 +81,4 @@ __assert_fail (const char *assertion, const char *file, unsigned int line, abort (); } -INTDEF(__assert_fail) +libc_hidden_def(__assert_fail)