summaryrefslogtreecommitdiff
path: root/lib/libm/noieee_src/n_cprojf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libm/noieee_src/n_cprojf.c')
-rw-r--r--lib/libm/noieee_src/n_cprojf.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/lib/libm/noieee_src/n_cprojf.c b/lib/libm/noieee_src/n_cprojf.c
deleted file mode 100644
index 3b948e821f1..00000000000
--- a/lib/libm/noieee_src/n_cprojf.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/* $OpenBSD: n_cprojf.c,v 1.2 2010/07/19 00:04:07 guenther Exp $ */
-/*
- * Copyright (c) 2008 Martynas Venckus <martynas@openbsd.org>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-#include <complex.h>
-#include <math.h>
-
-float complex
-cprojf(float complex z)
-{
- float complex res;
-
- if (isinf(__real__ z) || isinf(__imag__ z)) {
- __real__ res = INFINITY;
- __imag__ res = copysign(0.0, __imag__ z);
- } else {
- res = z;
- }
-
- return res;
-}