summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/unix/posix/startup/no-ctor.c
blob: 349ad2b1dd7de60409f1887734030c765ae7ae87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 *  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)
{
}