diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2004-12-30 17:35:29 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2004-12-30 17:35:29 +0000 |
commit | 157d4bd650a3e421c5bac48da7e528af9a6a76e2 (patch) | |
tree | 0379fb2c85e183c3c5669d425b3e42ae4592791b /gnu/lib/libf2c/libF77/r_asin.c | |
parent | 791194721fec8918406191b62da6dc41f2d690e5 (diff) |
Actual synch with 3.3.5.
Changes in Makefile.bsd-wrapper to avoid prereq.
Fix in lib*/config.h.in to include the right ones and get the correct
definitions.
Bump of shlib_version accordingly.
Diffstat (limited to 'gnu/lib/libf2c/libF77/r_asin.c')
-rw-r--r-- | gnu/lib/libf2c/libF77/r_asin.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gnu/lib/libf2c/libF77/r_asin.c b/gnu/lib/libf2c/libF77/r_asin.c index 45ece4b749e..b8c73c786af 100644 --- a/gnu/lib/libf2c/libF77/r_asin.c +++ b/gnu/lib/libf2c/libF77/r_asin.c @@ -1,13 +1,9 @@ #include "f2c.h" -#ifdef KR_headers -double asin(); -double r_asin(x) real *x; -#else #undef abs #include <math.h> -double r_asin(real *x) -#endif +double +r_asin (real * x) { -return( asin(*x) ); + return (asin (*x)); } |