"Implemented" IEEEDPDiv(): got the compiler to do it.
[AROS.git] / workbench / libs / mathieeedoubbas / ieeedpdiv.c
blobec52e9f93f83be217d1cca5102d4833a1b8de55a
1 /*
2 Copyright © 1995-2017, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
8 #include "mathieeedoubbas_intern.h"
10 /*****************************************************************************
12 NAME */
14 AROS_LHQUAD2(double, IEEEDPDiv,
16 /* SYNOPSIS */
17 AROS_LHAQUAD(double, y, D0, D1),
18 AROS_LHAQUAD(double, z, D2, D3),
20 /* LOCATION */
21 struct MathIeeeDoubBasBase *, MathIeeeDoubBasBase, 14, MathIeeeDoubBas)
23 /* FUNCTION
24 Divides two IEEE double precision numbers
26 INPUTS
28 RESULT
29 Quotient.
31 NOTES
33 EXAMPLE
35 BUGS
37 SEE ALSO
39 INTERNALS
41 *****************************************************************************/
43 AROS_LIBFUNC_INIT
45 return y / z;
47 AROS_LIBFUNC_EXIT