added prototype and return statement to eliminate warnings.

This commit is contained in:
Joel Sherrill
1997-04-07 21:29:49 +00:00
parent f1fc782e5f
commit dd1d1c7382

View File

@@ -23,6 +23,8 @@ int main(
char **environp char **environp
) )
{ {
extern void bsp_start( int, char**, char ** );
bsp_start( argc, argv, environp ); bsp_start( argc, argv, environp );
/* /*
@@ -31,4 +33,6 @@ int main(
*/ */
rtems_fatal_error_occurred( 0 ); rtems_fatal_error_occurred( 0 );
return 0; /* just to satisfy the native compiler */
} }