home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixlib36d / src / c / abs < prev    next >
Text File  |  1994-03-08  |  452b  |  34 lines

  1. #ifdef __STDC__
  2. static char sccs_id[] = "@(#) abs.c 1.1 " __DATE__ " HJR";
  3. #else
  4. static char sccs_id[] = "@(#) abs.c 1.1 26/9/90 HJR";
  5. #endif
  6.  
  7. /* abs.c (c) Copyright 1990 H.Rogers */
  8.  
  9. #include <stdlib.h>
  10.  
  11. #ifdef __STDC__
  12. int
  13. abs (register int x)
  14. #else
  15. int
  16. abs (x)
  17.      register int x;
  18. #endif
  19. {
  20.   return ((x < 0) ? -x : x);
  21. }
  22.  
  23. #ifdef __STDC__
  24. long
  25. labs (register long x)
  26. #else
  27. long
  28. labs (x)
  29.      register long x;
  30. #endif
  31. {
  32.   return ((x < 0) ? -x : x);
  33. }
  34.