-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogtrig.hpp
39 lines (33 loc) · 1.29 KB
/
logtrig.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* Copyright Johannes Kloimböck 2021 - 2022.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE or copy at
* https://www.boost.org/LICENSE_1_0.txt)
*/
#ifndef LOG_TRIG_INTERNAL_HPP
#define LOG_TRIG_INTERNAL_HPP
extern float lsin(float) noexcept;
extern long double lsin(long double) noexcept;
extern float l10sin(float) noexcept;
extern long double l10sin(long double) noexcept;
extern float l2sin(float) noexcept;
extern long double l2sin(long double) noexcept;
extern float lcos(float) noexcept;
extern long double lcos(long double) noexcept;
extern float l10cos(float) noexcept;
extern long double l10cos(long double) noexcept;
extern float l2cos(float) noexcept;
extern long double l2cos(long double) noexcept;
extern float ltan(float) noexcept;
extern long double ltan(long double) noexcept;
extern float l10tan(float) noexcept;
extern long double l10tan(long double) noexcept;
extern float l2tan(float) noexcept;
extern long double l2tan(long double) noexcept;
extern float lcot(float) noexcept;
extern long double lcot(long double) noexcept;
extern float l10cot(float) noexcept;
extern long double l10cot(long double) noexcept;
extern float l2cot(float) noexcept;
extern long double l2cot(long double) noexcept;
#endif