Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
aa2d15ab
Commit
aa2d15ab
authored
Aug 12, 2006
by
Francois-Xavier Coudert
Committed by
François-Xavier Coudert
Aug 12, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* intrinsics/bessel.c: Add prototypes for all functions.
From-SVN: r116098
parent
a30701cf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletions
+16
-1
libgfortran/ChangeLog
+4
-0
libgfortran/intrinsics/bessel.c
+12
-1
No files found.
libgfortran/ChangeLog
View file @
aa2d15ab
2006-08-12 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* intrinsics/bessel.c: Add prototypes for all functions.
2006-08-05 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* intrinsics/access.c (access_func): Remove export directive.
...
...
libgfortran/intrinsics/bessel.c
View file @
aa2d15ab
...
...
@@ -32,8 +32,9 @@ Boston, MA 02110-1301, USA. */
#include <math.h>
#include "libgfortran.h"
/* Assume we have all or none of these. */
#if HAVE_J0 && !HAVE_J0F
extern
float
j0f
(
float
);
float
j0f
(
float
x
)
{
...
...
@@ -42,6 +43,8 @@ j0f (float x)
#endif
#if HAVE_J1 && !HAVE_J1F
extern
float
j1f
(
float
);
float
j1f
(
float
x
)
{
return
(
float
)
j1
((
double
)
x
);
...
...
@@ -49,6 +52,8 @@ float j1f (float x)
#endif
#if HAVE_JN && !HAVE_JNF
extern
float
jnf
(
int
,
float
);
float
jnf
(
int
n
,
float
x
)
{
...
...
@@ -57,6 +62,8 @@ jnf (int n, float x)
#endif
#if HAVE_Y0 && !HAVE_Y0F
extern
float
y0f
(
float
);
float
y0f
(
float
x
)
{
...
...
@@ -65,6 +72,8 @@ y0f (float x)
#endif
#if HAVE_Y1 && !HAVE_Y1F
extern
float
y1f
(
float
);
float
y1f
(
float
x
)
{
...
...
@@ -73,6 +82,8 @@ y1f (float x)
#endif
#if HAVE_YN && !HAVE_YNF
extern
float
ynf
(
int
,
float
);
float
ynf
(
int
n
,
float
x
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment