home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume5 / smallc / part3 / lib / abs.c next >
Encoding:
Text File  |  1986-11-30  |  114 b   |  6 lines

  1. /*    abs (num) return absolute value */
  2. abs(num) int num;{
  3.     if (num < 0) return (-num);
  4.     else         return (num);
  5.     }
  6.