This website requires JavaScript.
Explore
Help
Sign In
OpenE2K
/
gcc
Watch
2
Star
0
Fork
0
You've already forked gcc
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
3adee96c46
gcc
/
libf2c
/
libF77
/
d_exp.c
10 lines
102 B
C
Raw
Normal View
History
Unescape
Escape
* Previous contents of gcc/f/runtime moved into toplevel "libf2c" directory. From-SVN: r17568
1998-02-01 02:37:08 +01:00
#
include
"f2c.h"
#
undef abs
#
include
<math.h>
*: Fix formatting. * libF77/*: Fix formatting. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54145
2002-06-01 14:38:32 +02:00
double
d_exp
(
doublereal
*
x
)
* Previous contents of gcc/f/runtime moved into toplevel "libf2c" directory. From-SVN: r17568
1998-02-01 02:37:08 +01:00
{
*: Fix formatting. * libF77/*: Fix formatting. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54145
2002-06-01 14:38:32 +02:00
return
(
exp
(
*
x
)
)
;
* Previous contents of gcc/f/runtime moved into toplevel "libf2c" directory. From-SVN: r17568
1998-02-01 02:37:08 +01:00
}
Reference in New Issue
Copy Permalink