summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/bootcard.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/shared/bootcard.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/c/src/lib/libbsp/shared/bootcard.c b/c/src/lib/libbsp/shared/bootcard.c
index c83b3f0b4c..76e08698a7 100644
--- a/c/src/lib/libbsp/shared/bootcard.c
+++ b/c/src/lib/libbsp/shared/bootcard.c
@@ -38,7 +38,6 @@ posix_api_configuration_table BSP_POSIX_Configuration;
/* Initialize C++ global Ctor/Dtor and initializes exception handling. */
#if defined(USE_INIT_FINI)
extern void _fini( void );
-extern void _init( void );
#endif
rtems_interrupt_level bsp_isr_level;
@@ -120,7 +119,6 @@ int boot_card(int argc, char **argv, char **envp)
*/
#ifdef USE_INIT_FINI
atexit( _fini );
- _init();
#endif
status = main( argc, argv_p, envp_p );