1component_class: LIB_SHARED
2component_type: BIONIC_LIBM
3component_type_version_major: 1
4component_type_version_minor: 0
5component_name: "libm"
6
7header: "<math.h>"
8
9interface: {
10  api: {
11    name: "fabs"
12    return_type: {
13      type: TYPE_SCALAR
14      scalar_type: "double_t"
15    }
16    arg: {
17      type: TYPE_SCALAR
18      scalar_type: "double_t"
19    }
20  }
21
22  api: {
23    name: "fabsf"
24    return_type: {
25      type: TYPE_SCALAR
26      scalar_type: "float_t"
27    }
28    arg: {
29      type: TYPE_SCALAR
30      scalar_type: "float_t"
31    }
32  }
33}
34