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

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