blob: 9db19ca34e9506cda508a72c76f056b53d796fbb [file] [log] [blame]
#include "f2c.h"
shortint
h_abs (shortint * x)
{
if (*x >= 0)
return (*x);
return (-*x);
}