home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / editors / mutt / me2s_pl7.zoo / mu_edit2 / util / iabs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-05  |  281 b   |  11 lines

  1. static char rcsid[] = "$Id: iabs.c,v 1.1 1992/09/06 19:31:32 mike Exp $";
  2.  
  3. /* $Log: iabs.c,v $
  4.  * Revision 1.1  1992/09/06  19:31:32  mike
  5.  * Initial revision
  6.  *
  7.  */
  8.  
  9.     /* iabs(int) returns absolute value of integer */
  10. iabs(n) register int n; { return (n < 0) ? -n : n; }
  11.