aboutsummaryrefslogtreecommitdiff
path: root/libf2c
diff options
context:
space:
mode:
authorNathanael Nerode <neroden@gcc.gnu.org>2003-06-15 04:43:18 +0000
committerNathanael Nerode <neroden@gcc.gnu.org>2003-06-15 04:43:18 +0000
commit9632acfc60ff02f939398f473160756f7a24053a (patch)
tree7bd9cac05d2f986cb7f26958dbf7aa122fbff115 /libf2c
parent0b4be7de750a66978f2244f4f2b0d9f385af192e (diff)
downloadgcc-9632acfc60ff02f939398f473160756f7a24053a.zip
gcc-9632acfc60ff02f939398f473160756f7a24053a.tar.gz
gcc-9632acfc60ff02f939398f473160756f7a24053a.tar.bz2
bes.c, dbes.c: Remove.
* libU77/bes.c, libU77/dbes.c: Remove. * libU77/Makefile.in: Remove references to bes.c, dbes.c From-SVN: r67963
Diffstat (limited to 'libf2c')
-rw-r--r--libf2c/ChangeLog5
-rw-r--r--libf2c/libU77/Makefile.in4
-rw-r--r--libf2c/libU77/bes.c58
-rw-r--r--libf2c/libU77/dbes.c58
4 files changed, 5 insertions, 120 deletions
diff --git a/libf2c/ChangeLog b/libf2c/ChangeLog
index c3af8a9..846d4dc 100644
--- a/libf2c/ChangeLog
+++ b/libf2c/ChangeLog
@@ -1,3 +1,8 @@
+2003-06-15 Nathanael Nerode <neroden@gcc.gnu.org>
+
+ * libU77/bes.c, libU77/dbes.c: Remove.
+ * libU77/Makefile.in: Remove references to bes.c, dbes.c
+
2003-04-21 Loren J. Rittle <ljrittle@acm.org>
* libI77/configure.in (_XOPEN_SOURCE): Bump to 600.
diff --git a/libf2c/libU77/Makefile.in b/libf2c/libU77/Makefile.in
index 6830d8b..09b1b2a 100644
--- a/libf2c/libU77/Makefile.in
+++ b/libf2c/libU77/Makefile.in
@@ -61,7 +61,6 @@ OBJS = VersionU.lo gerror_.lo perror_.lo ierrno_.lo itime_.lo time_.lo \
dtime_.lo isatty_.lo ltime_.lo fstat_.lo stat_.lo \
lstat_.lo access_.lo link_.lo getlog_.lo ttynam_.lo getcwd_.lo symlnk_.lo \
vxttime_.lo vxtidate_.lo gmtime_.lo fdate_.lo secnds_.lo \
- bes.lo dbes.lo \
chdir_.lo chmod_.lo lnblnk_.lo hostnm_.lo rename_.lo fgetc_.lo fputc_.lo \
umask_.lo sys_clock_.lo date_.lo second_.lo flush1_.lo mclock_.lo \
alarm_.lo datetime_.lo
@@ -71,7 +70,6 @@ SRCS = Version.c gerror_.c perror_.c ierrno_.c itime_.c time_.c \
dtime_.c isatty_.c ltime_.c fstat_.c stat_.c \
lstat_.c access_.c link_.c getlog_.c ttynam_.c getcwd_.c symlnk_.c \
vxttime_.c vxtidate_.c gmtime_.c fdate_.c secnds_.c \
- bes.c dbes.c \
chdir_.c chmod_.c lnblnk_.c hostnm_.c rename_.c fgetc_.c fputc_.c \
umask_.c sys_clock_.c date_.c second_.c flush1_.c mclock_.c \
alarm_.c datetime_.c
@@ -150,8 +148,6 @@ vtxidate_.lo: vxtidate_.c
fdate_.lo: fdate_.c
gmtime_.lo: gmtime_.c
secnds_.lo: secnds_.c
-bes.lo: bes.c
-dbes.lo: dbes.c
lnblnk_.lo: lnblnk_.c
chmod_.lo: chmod_.c
chdir_.lo: chdir_.c
diff --git a/libf2c/libU77/bes.c b/libf2c/libU77/bes.c
deleted file mode 100644
index 73373fd..0000000
--- a/libf2c/libU77/bes.c
+++ /dev/null
@@ -1,58 +0,0 @@
-/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
-This file is part of GNU Fortran libU77 library.
-
-This library is free software; you can redistribute it and/or modify it
-under the terms of the GNU Library General Public License as published
-by the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-GNU Fortran is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Library General Public License for more details.
-
-You should have received a copy of the GNU Library General Public
-License along with GNU Fortran; see the file COPYING.LIB. If
-not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#if 0 /* Don't include these unless necessary -- jcb. */
-#include "f2c.h"
-#include <math.h>
-
-double
-G77_besj0_0 (const real * x)
-{
- return j0 (*x);
-}
-
-double
-G77_besj1_0 (const real * x)
-{
- return j1 (*x);
-}
-
-double
-G77_besjn_0 (const integer * n, real * x)
-{
- return jn (*n, *x);
-}
-
-double
-G77_besy0_0 (const real * x)
-{
- return y0 (*x);
-}
-
-double
-G77_besy1_0 (const real * x)
-{
- return y1 (*x);
-}
-
-double
-G77_besyn_0 (const integer * n, real * x)
-{
- return yn (*n, *x);
-}
-#endif
diff --git a/libf2c/libU77/dbes.c b/libf2c/libU77/dbes.c
deleted file mode 100644
index 8a31746..0000000
--- a/libf2c/libU77/dbes.c
+++ /dev/null
@@ -1,58 +0,0 @@
-/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
-This file is part of GNU Fortran libU77 library.
-
-This library is free software; you can redistribute it and/or modify it
-under the terms of the GNU Library General Public License as published
-by the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-GNU Fortran is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Library General Public License for more details.
-
-You should have received a copy of the GNU Library General Public
-License along with GNU Fortran; see the file COPYING.LIB. If
-not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#if 0 /* Don't include these unless necessary -- dnp. */
-#include "f2c.h"
-#include <math.h>
-
-double
-G77_dbesj0_0 (const double *x)
-{
- return j0 (*x);
-}
-
-double
-G77_dbesj1_0 (const double *x)
-{
- return j1 (*x);
-}
-
-double
-G77_dbesjn_0 (const integer * n, double *x)
-{
- return jn (*n, *x);
-}
-
-double
-G77_dbesy0_0 (const double *x)
-{
- return y0 (*x);
-}
-
-double
-G77_dbesy1_0 (const double *x)
-{
- return y1 (*x);
-}
-
-double
-G77_dbesyn_0 (const integer * n, double *x)
-{
- return yn (*n, *x);
-}
-#endif