Files
rtems/c/src/lib/libbsp/c4x/c4xsim/startup/bsppretaskinghook.c
Joel Sherrill 0dba2a55d7 2008-09-19 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, console/debugio.c: Split out bspstart contents. Use
	shared stub for bsp_start.
	* startup/bsppretaskinghook.c: New file.
	* startup/bspstart.c: Removed.
2008-09-19 15:50:44 +00:00

20 lines
386 B
C

/*
* COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
*
* $Id$
*/
#include <bsp.h>
extern void bsp_spurious_initialize();
void bsp_pretasking_hook(void)
{
bsp_spurious_initialize();
}