home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / stdlib / abs.c next >
Encoding:
Text File  |  1990-05-30  |  145 b   |  17 lines

  1.  
  2. /*
  3.  *  ABS.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8.  
  9. int
  10. abs(int i)
  11. {
  12.     if (i < 0)
  13.     return(-i);
  14.     return(i);
  15. }
  16.  
  17.