diff options
-rw-r--r-- | sysdeps/m68k/fpu/e_atan2.c | 2 | ||||
-rw-r--r-- | sysdeps/m68k/fpu/e_atan2f.c | 2 | ||||
-rw-r--r-- | sysdeps/m68k/fpu/e_atan2l.c | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/m68k/fpu/e_atan2.c b/sysdeps/m68k/fpu/e_atan2.c new file mode 100644 index 0000000000..ae7a799ad1 --- /dev/null +++ b/sysdeps/m68k/fpu/e_atan2.c @@ -0,0 +1,2 @@ +#define FUNC __ieee754_atan2 +#include <e_fmod.c> diff --git a/sysdeps/m68k/fpu/e_atan2f.c b/sysdeps/m68k/fpu/e_atan2f.c new file mode 100644 index 0000000000..a4c5ebdfd3 --- /dev/null +++ b/sysdeps/m68k/fpu/e_atan2f.c @@ -0,0 +1,2 @@ +#define FUNC __ieee754_atan2f +#include <e_fmodf.c> diff --git a/sysdeps/m68k/fpu/e_atan2l.c b/sysdeps/m68k/fpu/e_atan2l.c new file mode 100644 index 0000000000..0d43a77b9e --- /dev/null +++ b/sysdeps/m68k/fpu/e_atan2l.c @@ -0,0 +1,2 @@ +#define FUNC __ieee754_atan2l +#include <e_fmodl.c> |