summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/unix/posix/startup/no-ctor.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/unix/posix/startup/no-ctor.c')
-rw-r--r--c/src/lib/libbsp/unix/posix/startup/no-ctor.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/c/src/lib/libbsp/unix/posix/startup/no-ctor.c b/c/src/lib/libbsp/unix/posix/startup/no-ctor.c
deleted file mode 100644
index 349ad2b1dd..0000000000
--- a/c/src/lib/libbsp/unix/posix/startup/no-ctor.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * rtems, floss, libc are always compiled with GNU compilers
- * application code may be compiled with some other C++ compiler
- * that has a different global constructor technique.
- *
- * For the simple case, where the app has no global constructors or
- * is compiled by g++, we provide this empty routine
- * In order to get both g++ constructors (RTEMS::RTEMS, for example)
- * and application constructors run, we provide this routine.
- *
- * $Id$
- */
-
-void invoke_non_gnu_constructors(void)
-{
-}