Files
rtems/testsuites/libtests/dl06/dl06-o2.c
T
Sebastian Huber 9de8d61a9a libtest: <rtems/test.h> to <rtems/test-info.h>
Rename this header file to later move <t.h> to <rtems/test.h>.  The main
feature provided by <rtems/test-info.h> is the output of standard test
information which is consumed by the RTEMS Tester.

Update #3199.
2020-07-23 09:27:10 +02:00

39 lines
739 B
C

/*
* Copyright (c) 2018 Chris Johns <chrisj@rtems.org>. All rights reserved.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.org/license/LICENSE.
*/
#include "dl06-o2.h"
#include <stdlib.h>
#include <math.h>
#include <rtems/test-info.h>
#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
/*
* Call function that are not part of the RTEMS kernel base image.
*/
void dl_o2_func1 (unsigned short s[7])
{
printf("libm: lcong48\n")
lcong48 (s);
}
double dl_o2_func2 (double d1, double d2)
{
printf("libm: atan2\n")
return atan2 (d1, d2);
}
double dl_o2_func3 (double d)
{
printf("libm: tan\n")
return tan (d);
}