Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdlib/cxa_finalize.c')
-rw-r--r--newlib/libc/stdlib/cxa_finalize.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/newlib/libc/stdlib/cxa_finalize.c b/newlib/libc/stdlib/cxa_finalize.c
deleted file mode 100644
index 17d0526a7..000000000
--- a/newlib/libc/stdlib/cxa_finalize.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * Implementation if __cxa_finalize.
- */
-
-
-#include <stdlib.h>
-#include <reent.h>
-#include "atexit.h"
-
-/*
- * Call registered exit handlers. If D is null then all handlers are called,
- * otherwise only the handlers from that DSO are called.
- */
-
-void
-_DEFUN (__cxa_finalize, (d),
- void * d)
-{
- __call_exitprocs (0, d);
-}