aboutsummaryrefslogtreecommitdiff
path: root/libf2c/libF77/h_abs.c
blob: 9db19ca34e9506cda508a72c76f056b53d796fbb (plain)
1
2
3
4
5
6
7
8
9
#include "f2c.h"

shortint
h_abs (shortint * x)
{
  if (*x >= 0)
    return (*x);
  return (-*x);
}