index
:
ppe42-gcc
gcc-4_9_2-ppe42
GCC for the PPE42
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
libf2c
/
libF77
/
i_abs.c
blob: 2f96f5c78380c8568bfb6266b9b3ca7da868a4d0 (
plain
)
1
2
3
4
5
6
7
8
#include "f2c.h" integer i_abs(integer *x) { if(*x >= 0) return(*x); return(- *x); }