source: rtems/c/src/lib/libbsp/unix/posix/startup/no-ctor.c @ df25c998

4.104.114.84.95
Last change on this file since df25c998 was c64e4ed4, checked in by Joel Sherrill <joel.sherrill@…>, on 01/15/96 at 21:50:28

updates from Tony Bennett for PA and UNIX ports

  • Property mode set to 100644
File size: 505 bytes
Line 
1/*
2 *  rtems, floss, libc are always compiled with GNU compilers
3 *  application code may be compiled with some other C++ compiler
4 *  that has a different global constructor technique.
5 *
6 *  For the simple case, where the app has no global constructors or
7 *  is compiled by g++, we provide this empty routine
8 *  In order to get both g++ constructors (RTEMS::RTEMS, for example)
9 *  and application constructors run, we provide this routine.
10 *
11 *  $Id$
12 */
13
14void invoke_non_gnu_constructors(void)
15{
16}
Note: See TracBrowser for help on using the repository browser.