ReactOS 0.4.15-dev-7924-g5949c20
libm.h
Go to the documentation of this file.
1/***********************************************************************************/
24/***********************************************************************************/
25
26#ifndef LIBM_AMD_H_INCLUDED
27#define LIBM_AMD_H_INCLUDED 1
28
29#define FN_PROTOTYPE(fname) fname
30
31#include <math.h>
32#include <fpieee.h>
33
34#ifndef IS_64BIT
35#define IS_64BIT
36#endif
37
38#ifndef _COMPLEX_DEFINED
39struct _complex
40{
41 double x, y; /* real and imaginary parts */
42};
43#define _COMPLEX_DEFINED
44#endif
45#define COMPLEX struct _complex
46
47extern void __remainder_piby2(double x, double *r, double *rr, int *region);
48
49#endif /* LIBM_AMD_H_INCLUDED */
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLdouble GLdouble GLdouble r
Definition: gl.h:2055
void __remainder_piby2(double x, double *r, double *rr, int *region)
Definition: math.h:31
double y
Definition: math.h:32
double x
Definition: math.h:32