DEBSOURCES
Skip Quicknav
sources / scilab / 4.1.2-6 / routines / f2c / libf2c / r_abs.c
123456789101112
#include "f2c.h" #ifdef KR_headers double r_abs(x) real *x; #else double r_abs(real *x) #endif { if(*x >= 0) return(*x); return(- *x); }