Changeset d233c88 in rtems
- Timestamp:
- Oct 30, 2006, 10:18:57 PM (14 years ago)
- Children:
- f5c9b89
- Parents:
- d1adbae
- Location:
- c/src/lib/libbsp/unix/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/unix/posix/ChangeLog
rd1adbae rd233c88 1 2006-10-30 Joel Sherrill <joel@OARcorp.com> 2 3 * startup/rtems-ctor.cc: Conditionally disable non-GCC code. 4 1 5 2006-10-19 Ralf Corsépius <ralf.corsepius@rtems.org> 2 6 -
c/src/lib/libbsp/unix/posix/startup/rtems-ctor.cc
rd1adbae rd233c88 78 78 79 79 extern "C" { 80 extern void invoke_non_gnu_constructors(void); 80 #ifndef __GNUC__ 81 extern void invoke_non_gnu_constructors(void); 82 #endif 81 83 82 84 int … … 97 99 */ 98 100 99 invoke_non_gnu_constructors(); 101 #ifndef __GNUC__ 102 invoke_non_gnu_constructors(); 103 #endif 100 104 101 105 /*
Note: See TracChangeset
for help on using the changeset viewer.