1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

(__assert_fail): Fix typo in comment.

This commit is contained in:
Ulrich Drepper
2002-08-03 03:54:03 +00:00
parent 1f3f143e62
commit c04ccaa789

View File

@@ -42,7 +42,6 @@ extern const char *__progname;
# include FATAL_PREPARE_INCLUDE # include FATAL_PREPARE_INCLUDE
#endif #endif
#undef __assert_fail
void void
__assert_fail (const char *assertion, const char *file, unsigned int line, __assert_fail (const char *assertion, const char *file, unsigned int line,
const char *function) const char *function)
@@ -69,7 +68,7 @@ __assert_fail (const char *assertion, const char *file, unsigned int line,
(void) fflush (stderr); (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. */ SIGABRT. */
free (buf); free (buf);
} }
@@ -82,4 +81,4 @@ __assert_fail (const char *assertion, const char *file, unsigned int line,
abort (); abort ();
} }
INTDEF(__assert_fail) libc_hidden_def(__assert_fail)