/* labs.c (emx+gcc) -- Copyright (c) 1992-1993 by Eberhard Mattes */

long labs (long n)
{
  return (n < 0 ? -n : n);
}
