From 4eabfc93615a2b97dd42af570f10b648231fc84b Mon Sep 17 00:00:00 2001 From: martynas <> Date: Fri, 8 Jul 2011 19:25:31 +0000 Subject: [PATCH] Finalize work on complex math routines, now that we have the extended-precision support. Mostly from Cephes. --- src/include/complex.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/include/complex.h b/src/include/complex.h index be85c7c0..a291b392 100644 --- a/src/include/complex.h +++ b/src/include/complex.h @@ -1,4 +1,4 @@ -/* $OpenBSD: complex.h,v 1.3 2010/07/24 22:17:03 guenther Exp $ */ +/* $OpenBSD: complex.h,v 1.4 2011/07/08 19:25:31 martynas Exp $ */ /* * Copyright (c) 2008 Martynas Venckus * @@ -94,7 +94,6 @@ float crealf(float complex); /* * Long double versions of C99 functions */ -#if 0 long double complex cacosl(long double complex); long double complex casinl(long double complex); long double complex catanl(long double complex); @@ -118,7 +117,6 @@ long double cimagl(long double complex); long double complex conjl(long double complex); long double complex cprojl(long double complex); long double creall(long double complex); -#endif __END_DECLS #endif /* !_COMPLEX_H_ */