From dbcc9ec681d85c8419a7612978f38b63bb251afe Mon Sep 17 00:00:00 2001 From: mbuhl Date: Sat, 23 Apr 2022 16:04:05 +0000 Subject: [PATCH] Fix compilation on octeon, arm64, and riscv64. --- regress/lib/libm/cephes/testvectll.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/regress/lib/libm/cephes/testvectll.c b/regress/lib/libm/cephes/testvectll.c index a4ffe2782dc..f19bcf27115 100644 --- a/regress/lib/libm/cephes/testvectll.c +++ b/regress/lib/libm/cephes/testvectll.c @@ -1,4 +1,4 @@ -/* $OpenBSD: testvectll.c,v 1.4 2013/08/02 22:19:33 kettenis Exp $ */ +/* $OpenBSD: testvectll.c,v 1.5 2022/04/23 16:04:05 mbuhl Exp $ */ /* * Copyright (c) 2008 Stephen L. Moshier @@ -40,7 +40,8 @@ int __isfinitel (long double); /* extern long double INFINITYL, NANL, NEGZEROL; */ -long double INFINITYL, NANL, NEGZEROL; +extern long double INFINITYL; +long double NANL, NEGZEROL; long double MINFL; extern long double PIL, PIO2L, PIO4L, MACHEPL; long double MPIL; -- 2.20.1