]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(__assert_fail): Fix typo in comment.
authorUlrich Drepper <drepper@redhat.com>
Sat, 3 Aug 2002 03:54:03 +0000 (03:54 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 3 Aug 2002 03:54:03 +0000 (03:54 +0000)
assert/assert.c

index 334382b6668c4793671b4aa4a4a5f3e50f05fe6f..cbbed210025a6cb73330247071cd1719cf83fe67 100644 (file)
@@ -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)