URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [unix/] [posix/] [startup/] [no-ctor.c] - Rev 1026
Go to most recent revision | Compare with Previous | Blame | View Log
/* * 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. * * no-ctor.c,v 1.1 1996/01/15 21:49:55 joel Exp */ void invoke_non_gnu_constructors(void) { }
Go to most recent revision | Compare with Previous | Blame | View Log