summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2018-04-14 18:22:33 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2018-04-17 18:15:58 +0100
commit07dfe7c86bd61382098b2ef74afe49ab6ac598c3 (patch)
tree1acfbdef54e7a1ce3b009e1dc9b4e4a429f33977
parentaaf1b2f5652e2f658383d432dd1b65a6a719f849 (diff)
libdl: cleanup old inline changelog
-rw-r--r--libc/stdlib/_atexit.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/libc/stdlib/_atexit.c b/libc/stdlib/_atexit.c
index ffc659ca2..ced3ee2ff 100644
--- a/libc/stdlib/_atexit.c
+++ b/libc/stdlib/_atexit.c
@@ -3,40 +3,6 @@
* under the GNU Library General Public License.
*/
-/*
- * Dec 2000 Manuel Novoa III
- *
- * Made atexit handling conform to standards... i.e. no args.
- * Removed on_exit since it did not match gnu libc definition.
- * Combined atexit and __do_exit into one object file.
- *
- * Feb 2001 Manuel Novoa III
- *
- * Reworked file after addition of __uClibc_main.
- * Changed name of __do_exit to atexit_handler.
- * Changed name of __cleanup to __uClibc_cleanup.
- * Moved declaration of __uClibc_cleanup to __uClibc_main
- * where it is initialized with (possibly weak alias)
- * _stdio_term.
- *
- * Jul 2001 Steve Thayer
- *
- * Added an on_exit implementation (that now matches gnu libc definition.)
- * Pulled atexit_handler out of the atexit object since it is now required by
- * on_exit as well. Renamed it to __exit_handler.
- * Fixed a problem where exit functions stop getting called if one of
- * them calls exit().
- * As a side effect of these changes, abort() no longer calls the exit
- * functions (it now matches the gnu libc definition).
- *
- * August 2002 Erik Andersen
- * Added locking so atexit and friends can be thread safe
- *
- * August 2005 Stephen Warren
- * Added __cxa_atexit and __cxa_finalize support
- *
- */
-
#include <features.h>
#include <unistd.h>
#include <stdlib.h>