Doxygen Source Code Documentation
        
Main Page   Alphabetical List   Data Structures   File List   Data Fields   Globals   Search   
i_abs.c
Go to the documentation of this file.00001 #include "f2c.h"
00002 
00003 #ifdef KR_headers
00004 integer i_abs(x) integer *x;
00005 #else
00006 integer i_abs(integer *x)
00007 #endif
00008 {
00009 if(*x >= 0)
00010         return(*x);
00011 return(- *x);
00012 }