Improved AutoDocs.
[AROS.git] / workbench / libs / mathieeedoubbas / ieeedpdiv.c
blobff91ff2ef237c1105cc2e9251ba3a000d788b8a6
1 /*
2 Copyright © 1995-2017, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "mathieeedoubbas_intern.h"
8 /*****************************************************************************
10 NAME */
12 AROS_LHQUAD2(double, IEEEDPDiv,
14 /* SYNOPSIS */
15 AROS_LHAQUAD(double, y, D0, D1),
16 AROS_LHAQUAD(double, z, D2, D3),
18 /* LOCATION */
19 struct MathIeeeDoubBasBase *, MathIeeeDoubBasBase, 14, MathIeeeDoubBas)
21 /* FUNCTION
22 Divides two IEEE double precision numbers.
24 INPUTS
25 y - dividend.
26 z - divisor.
28 RESULT
29 x - 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