diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-03 03:54:03 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-03 03:54:03 +0000 |
commit | c04ccaa789bc546f5d4b1da3448a76f5c991a4bd (patch) | |
tree | fa75a9d2415affb3765d5ba6d59234e2af48a420 /assert | |
parent | 1f3f143e627ba38e05da328670a80b3ac8712e51 (diff) | |
download | glibc-c04ccaa789bc546f5d4b1da3448a76f5c991a4bd.tar.gz glibc-c04ccaa789bc546f5d4b1da3448a76f5c991a4bd.tar.xz glibc-c04ccaa789bc546f5d4b1da3448a76f5c991a4bd.zip |
(__assert_fail): Fix typo in comment.
Diffstat (limited to 'assert')
-rw-r--r-- | assert/assert.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/assert/assert.c b/assert/assert.c index 334382b666..cbbed21002 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) |