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

shortint
h_sign (shortint * a, shortint * b)
{
  shortint x;
  x = (*a >= 0 ? *a : -*a);
  return (*b >= 0 ? x : -x);
}