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
This commit is contained in:
Nathanael Nerode 2003-06-15 04:43:18 +00:00
parent 0b4be7de75
commit 9632acfc60
4 changed files with 5 additions and 120 deletions

View file

@ -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.

View file

@ -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

View file

@ -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

View file

@ -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