Module Name:    src
Committed By:   kre
Date:           Mon Jan 22 14:01:50 UTC 2024

Modified Files:
        src/include: math.h

Log Message:
It seems that we need prototypes for long double math functions, even
when !__HAVE_LONG_DOUBLE -- they still exist, but just aren't...

This might unbreak several more builds.


To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 src/include/math.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/include/math.h
diff -u src/include/math.h:1.68 src/include/math.h:1.69
--- src/include/math.h:1.68	Mon Jan 22 12:15:19 2024
+++ src/include/math.h	Mon Jan 22 14:01:50 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: math.h,v 1.68 2024/01/22 12:15:19 kre Exp $	*/
+/*	$NetBSD: math.h,v 1.69 2024/01/22 14:01:50 kre Exp $	*/
 
 /*
  * ====================================================
@@ -599,12 +599,10 @@ float	sinpif(float);
 double	tanpi(double);
 float	tanpif(float);
 
-#ifdef __HAVE_LONG_DOUBLE
 long double	cospil(long double);
 long double	lgammal_r(long double, int *);
 long double	sinpil(long double);
 long double	tanpil(long double);
-#endif
 
 __END_DECLS
 

Reply via email to