blob: 17fdcf46fae2f7261428d3aa94bb11886006b79e [file] [log] [blame]
George Landerda55ef92015-11-19 12:05:06 +00001/*
Szabolcs Nagy0d51c042018-04-25 13:26:22 +01002 * Public API.
George Landerda55ef92015-11-19 12:05:06 +00003 *
Szabolcs Nagya7711a32018-06-05 11:43:57 +01004 * Copyright (c) 2015-2018, Arm Limited.
Szabolcs Nagy1b945972018-05-14 14:46:40 +01005 * SPDX-License-Identifier: Apache-2.0
George Landerda55ef92015-11-19 12:05:06 +00006 *
Szabolcs Nagy1b945972018-05-14 14:46:40 +01007 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
George Landerda55ef92015-11-19 12:05:06 +000010 *
Szabolcs Nagy1b945972018-05-14 14:46:40 +010011 * http://www.apache.org/licenses/LICENSE-2.0
George Landerda55ef92015-11-19 12:05:06 +000012 *
Szabolcs Nagy1b945972018-05-14 14:46:40 +010013 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
George Landerda55ef92015-11-19 12:05:06 +000018 */
19
Szabolcs Nagy0d51c042018-04-25 13:26:22 +010020float sinf(float);
21float cosf(float);
22float tanf(float);
23float expf(float);
24float exp2f(float);
25float logf(float);
26float log2f(float);
27float powf(float, float);
Wilco Dijkstra269dc162018-05-16 15:39:22 +010028float sinf(float);
29float cosf(float);
30void sincosf(float, float*, float*);
Szabolcs Nagya7711a32018-06-05 11:43:57 +010031
32double exp(double);
33double exp2(double);
34double log(double);