From 4d3fc4632681576eed8235f8b90b49a032c80218 Mon Sep 17 00:00:00 2001
From: Damien George <damien.p.george@gmail.com>
Date: Fri, 29 Aug 2014 23:24:00 +0100
Subject: [PATCH] lib, libm: Add back dummy definition of tanf.

---
 lib/libm/math.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/libm/math.c b/lib/libm/math.c
index 8433081b9..23218fe56 100644
--- a/lib/libm/math.c
+++ b/lib/libm/math.c
@@ -116,6 +116,7 @@ float tanhf(float x) { return sinhf(x) / coshf(x); }
 float acoshf(float x) { return 0.0; }
 float asinhf(float x) { return 0.0; }
 float atanhf(float x) { return 0.0; }
+float tanf(float x) { return 0.0; }
 float acosf(float x) { return 0.0; }
 float asinf(float x) { return 0.0; }
 float fmodf(float x, float y) { return 0.0; }
-- 
GitLab