2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libf2c / libF77 / r_abs.c
blob6f62724ef17a1ed6773267bb3e6f04553bfe1805
1 #include "f2c.h"
3 double
4 r_abs (real * x)
6 if (*x >= 0)
7 return (*x);
8 return (-*x);