s_fabs.c 634 B

123456789101112131415161718192021222324252627
  1. /* @(#)s_fabs.c 5.1 93/09/24 */
  2. /*
  3. * ====================================================
  4. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5. *
  6. * Developed at SunPro, a Sun Microsystems, Inc. business.
  7. * Permission to use, copy, modify, and distribute this
  8. * software is freely granted, provided that this notice
  9. * is preserved.
  10. * ====================================================
  11. */
  12. /*
  13. * fabs(x) returns the absolute value of x.
  14. */
  15. #include "openlibm.h"
  16. #include "math_private.h"
  17. double
  18. fabs(double x)
  19. {
  20. u_int32_t high;
  21. GET_HIGH_WORD(high,x);
  22. SET_HIGH_WORD(x,high&0x7fffffff);
  23. return x;
  24. }