Reflect having split-out mathl and mathf.

This commit is contained in:
Ralf Corsepius
2011-02-02 14:00:38 +00:00
parent e12d49d9da
commit 1c64f50386
2 changed files with 6 additions and 26 deletions

View File

@@ -28,8 +28,6 @@
#include <stdlib.h>
extern void domath(void);
extern void domathf(void);
extern void domathl(void);
#if __rtems__
rtems_task Init(
@@ -39,13 +37,11 @@ rtems_task Init(
int main( void )
#endif
{
fprintf( stdout, "*** FLOAT MATH TEST ***\n" );
fprintf( stdout, "*** DOUBLE MATH TEST ***\n" );
domath();
domathf();
domathl();
fprintf( stdout, "*** END OF FLOAT MATH TEST ***\n" );
fprintf( stdout, "*** END OF DOUBLE MATH TEST ***\n" );
exit( 0 );
}