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 / labs.c < prev    next >
Encoding:
Text File  |  1997-12-30  |  64 b   |  6 lines

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