home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / stdlib / llabs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-18  |  214 b   |  10 lines

  1. /* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
  2. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  3. #include <stdlib.h>
  4.  
  5. long long
  6. llabs(long long j)
  7. {
  8.   return j<0 ? -j : j;
  9. }
  10.