8000 lib, libm: Add back dummy definition of tanf. · mimoccc/circuitpython@4d3fc46 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4d3fc46

Browse files
committed
lib, libm: Add back dummy definition of tanf.
1 parent 8707ea3 commit 4d3fc46

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/libm/math.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ float tanhf(float x) { return sinhf(x) / coshf(x); }
116116
float acoshf(float x) { return 0.0; }
117117
float asinhf(float x) { return 0.0; }
118118
float atanhf(float x) { return 0.0; }
119+
float tanf(float x) { return 0.0; }
119120
float acosf(float x) { return 0.0; }
120121
float asinf(float x) { return 0.0; }
121122
float fmodf(float x, float y) { return 0.0; }

0 commit comments

Comments
 (0)
0