add math/modf benchmark
[libc-test] / src / math / acos.c
1 #include "test.h"
2 #include <math.h>
3
4 void bench_acos(int N)
5 {
6         int i;
7         volatile double y;
8
9         for (i = 0; i < N; i++) {
10                 y = acos(0.3456);
11         }
12 }