home *** CD-ROM | disk | FTP | other *** search
/ The Best of Mecomp Multimedia 2 / MECOMP-CD-II.iso / amiga / programmieren / c / vbcc / machines / amigappc / libsrc / stdlib / abs.c < prev    next >
Encoding:
Text File  |  1997-12-30  |  61 b   |  6 lines

  1. int abs(int x)
  2. {
  3.     if(x>=0) return(x); else return(-x);
  4. }
  5.  
  6.