#ifndef _MATH_H
#define _MATH_H 1
#include <posix/math.h>
#include <features.h>
#if __GNUC__ == 2
#define __HUGE_VALL_bytes { 0, 0, 0, 0, 0, 0, 0, 0x80, 0xff, 0x7f, 0, 0 }
#define __huge_vall_t union { unsigned char __c[12]; long double __ld; }
#define HUGE_VALL (__extension__ \
((__huge_vall_t) { __c: __HUGE_VALL_bytes }).__ld)
#endif
# define M_El 2.7182818284590452353602874713526625L
# define M_LOG2El 1.4426950408889634073599246810018921L
# define M_LOG10El 0.4342944819032518276511289189166051L
# define M_LN2l 0.6931471805599453094172321214581766L
# define M_LN10l 2.3025850929940456840179914546843642L
# define M_PIl 3.1415926535897932384626433832795029L
# define M_PI_2l 1.5707963267948966192313216916397514L
# define M_PI_4l 0.7853981633974483096156608458198757L
# define M_1_PIl 0.3183098861837906715377675267450287L
# define M_2_PIl 0.6366197723675813430755350534900574L
# define M_2_SQRTPIl 1.1283791670955125738961589031215452L
# define M_SQRT2l 1.4142135623730950488016887242096981L
# define M_SQRT1_2l 0.7071067811865475244008443621048490L
extern void sincos(double x, double *sin, double *cos);
extern void sincosf(float x, float *sin, float *cos);
extern void sincosl(long double x, long double *sin, long double *cos);
#endif