home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / lib / mntlib44.zoo / mntlib / abs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-01  |  129 b   |  13 lines

  1. /* return absolute values */
  2. #include <stdlib.h>
  3.  
  4. #ifdef abs
  5. #undef abs
  6. #endif
  7.  
  8. int abs(x)
  9.   int x;
  10. {
  11.   return x < 0 ? -x : x;
  12. }
  13.