SDL  2.0
s_fabs.c File Reference
#include "math_libm.h"
#include "math_private.h"
+ Include dependency graph for s_fabs.c:

Go to the source code of this file.

Functions

 libm_hidden_proto (fabs)
 

Function Documentation

libm_hidden_proto ( fabs  )

Definition at line 25 of file s_fabs.c.

References GET_HIGH_WORD, and SET_HIGH_WORD.

32 {
33  u_int32_t high;
34  GET_HIGH_WORD(high, x);
35  SET_HIGH_WORD(x, high & 0x7fffffff);
36  return x;
37 }
#define GET_HIGH_WORD(i, d)
Definition: math_private.h:103
GLint GLint GLint GLint GLint x
Definition: SDL_opengl.h:1574
#define SET_HIGH_WORD(d, v)
Definition: math_private.h:131
unsigned int u_int32_t
Definition: math_private.h:29