Skip to content

Commit 07b425b

Browse files
committed
give full prototype for y0,y1,log in Math/yn.c - #528
1 parent cf1a6d6 commit 07b425b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
- fix Math function prototypes for GCC 15 (#528) - thanks @jplesnik for report
2+
13
2.099 2025-01-23
24
- fix test that assumed acosh(0)->byte, i.e. nan()->byte, was always 0 (#514) - thanks @eserte for report
35
- separate PDL::Type POD documentation

lib/PDL/Math/yn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ int n;
6161
double x;
6262
{
6363
double an, anm1, anm2, r;
64-
double y0(), y1(), log();
64+
double y0(double), y1(double), log(double);
6565
int k, sign;
6666

6767
if( n < 0 )

0 commit comments

Comments
 (0)