aboutsummaryrefslogtreecommitdiff
path: root/math/expf.c
diff options
context:
space:
mode:
authorSzabolcs Nagy <szabolcs.nagy@arm.com>2018-04-25 13:26:22 +0100
committerSzabolcs Nagy <szabolcs.nagy@arm.com>2018-05-16 13:52:13 +0100
commit0d51c0453a46a76dcf3bfd1820de7e2ffbd4b751 (patch)
tree6fae0b94a9e4079295745279fad13ccc91d01c08 /math/expf.c
parent5056a5989cb535eb47b946e8e654f48ad1b3ec8f (diff)
downloadarm-optimized-routines-0d51c0453a46a76dcf3bfd1820de7e2ffbd4b751.tar.gz
Remove the ARM__ symbol prefix
Use standard math symbols so it's easy to override libm functions. The arm_math.h header is no longer necessary, user code can just use math.h, but keep a header for freestanding code.
Diffstat (limited to 'math/expf.c')
-rw-r--r--math/expf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/expf.c b/math/expf.c
index 6b81310..90fd3b7 100644
--- a/math/expf.c
+++ b/math/expf.c
@@ -47,7 +47,7 @@ top12 (float x)
}
float
-ARM__expf (float x)
+expf (float x)
{
uint32_t abstop;
uint64_t ki, t;