aboutsummaryrefslogtreecommitdiff
path: root/target/m68k/softfloat.h
diff options
context:
space:
mode:
authorLaurent Vivier <laurent@vivier.eu>2018-03-12 21:27:25 +0100
committerLaurent Vivier <laurent@vivier.eu>2018-03-13 16:34:42 +0100
commite3655afa137b2e0999537eef273a2845ba21d68c (patch)
treecabf56fb6e2be1530f9f7f0290219f2013b943fd /target/m68k/softfloat.h
parentc84813b807fc82c68ff6d72387f95b15ad283bf6 (diff)
target/m68k: implement fatanh
Using a local m68k floatx80_atanh() [copied from previous: Written by Andreas Grabher for Previous, NeXT Computer Emulator.] Signed-off-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20180312202728.23790-9-laurent@vivier.eu>
Diffstat (limited to 'target/m68k/softfloat.h')
-rw-r--r--target/m68k/softfloat.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/target/m68k/softfloat.h b/target/m68k/softfloat.h
index 1140491c81..e9943aed20 100644
--- a/target/m68k/softfloat.h
+++ b/target/m68k/softfloat.h
@@ -40,4 +40,5 @@ floatx80 floatx80_cos(floatx80 a, float_status *status);
floatx80 floatx80_atan(floatx80 a, float_status *status);
floatx80 floatx80_asin(floatx80 a, float_status *status);
floatx80 floatx80_acos(floatx80 a, float_status *status);
+floatx80 floatx80_atanh(floatx80 a, float_status *status);
#endif