Module Name: src Committed By: christos Date: Tue Jan 24 17:50:18 UTC 2023
Modified Files: src/sys/arch/vax/include: math.h Log Message: mark unused arguments as such To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/arch/vax/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/sys/arch/vax/include/math.h diff -u src/sys/arch/vax/include/math.h:1.8 src/sys/arch/vax/include/math.h:1.9 --- src/sys/arch/vax/include/math.h:1.8 Thu Jul 27 08:15:59 2017 +++ src/sys/arch/vax/include/math.h Tue Jan 24 12:50:18 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: math.h,v 1.8 2017/07/27 12:15:59 martin Exp $ */ +/* $NetBSD: math.h,v 1.9 2023/01/24 17:50:18 christos Exp $ */ #ifndef _VAX_MATH_H_ #define _VAX_MATH_H_ @@ -11,8 +11,8 @@ #define __INFINITY 1.0E+39F #endif -static __inline int __isinf(double __x) { return 0; } -static __inline int __isnan(double __x) { return 0; } +static __inline int __isinf(double __x __unused) { return 0; } +static __inline int __isnan(double __x __unused) { return 0; } #define __HAVE_INLINE___ISINF #define __HAVE_INLINE___ISNAN