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_atexit.c')
-rw-r--r--newlib/libc/stdlib/cxa_atexit.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/newlib/libc/stdlib/cxa_atexit.c b/newlib/libc/stdlib/cxa_atexit.c
deleted file mode 100644
index 8c39236de..000000000
--- a/newlib/libc/stdlib/cxa_atexit.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Implementation of __cxa_atexit.
- */
-
-#include <stddef.h>
-#include <stdlib.h>
-#include <reent.h>
-#include <sys/lock.h>
-#include "atexit.h"
-
-/*
- * Register a function to be performed at exit or DSO unload.
- */
-
-int
-_DEFUN (__cxa_atexit,
- (fn, arg, d),
- void (*fn) (void *) _AND
- void *arg _AND
- void *d)
-{
- return __register_exitproc (__et_cxa, (void (*)(void)) fn, arg, d);
-}