source: trunk/src/gcc/libf2c/libF77/c_abs.c@ 1164

Last change on this file since 1164 was 2, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 205 bytes
Line 
1#include "f2c.h"
2
3#ifdef KR_headers
4extern double f__cabs();
5
6double c_abs(z) complex *z;
7#else
8extern double f__cabs(double, double);
9
10double c_abs(complex *z)
11#endif
12{
13return( f__cabs( z->r, z->i ) );
14}
Note: See TracBrowser for help on using the repository browser.