]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/Include/Arm/machine/ieeefp.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / StdLib / Include / Arm / machine / ieeefp.h
diff --git a/StdLib/Include/Arm/machine/ieeefp.h b/StdLib/Include/Arm/machine/ieeefp.h
deleted file mode 100644 (file)
index c3de5ef..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-/*  $NetBSD: ieeefp.h,v 1.3 2013/04/23 05:42:23 matt Exp $  */\r
-/** @file\r
-*\r
-*  Copyright (c) 2013 - 2014, ARM Limited. All rights reserved.\r
-*\r
-*  This program and the accompanying materials\r
-*  are licensed and made available under the terms and conditions of the BSD License\r
-*  which accompanies this distribution.  The full text of the license may be found at\r
-*  http://opensource.org/licenses/bsd-license.php\r
-*\r
-*  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-*  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-*\r
-**/\r
-/*\r
- * Based on ieeefp.h written by J.T. Conklin, Apr 28, 1995\r
- * Public domain.\r
- */\r
-\r
-#ifndef _ARM_IEEEFP_H_\r
-#define _ARM_IEEEFP_H_\r
-\r
-#include <LibConfig.h>\r
-#include <sys/featuretest.h>\r
-\r
-#if defined(_NETBSD_SOURCE) || defined(_ISOC99_SOURCE)\r
-\r
-//#include <arm/fenv.h>\r
-#include <machine/fenv.h>\r
-\r
-#if !defined(_ISOC99_SOURCE)\r
-\r
-/* Exception type (used by fpsetmask() et al.) */\r
-\r
-typedef int fp_except;\r
-\r
-/* Bit defines for fp_except */\r
-\r
-#define FP_X_INV    FE_INVALID      /* invalid operation exception */\r
-#define FP_X_DZ     FE_DIVBYZERO    /* divide-by-zero exception */\r
-#define FP_X_OFL    FE_OVERFLOW     /* overflow exception */\r
-#define FP_X_UFL    FE_UNDERFLOW    /* underflow exception */\r
-#define FP_X_IMP    FE_INEXACT      /* imprecise (prec. loss; "inexact") */\r
-\r
-/* Rounding modes */\r
-\r
-typedef enum {\r
-    FP_RN=FE_TONEAREST,     /* round to nearest representable number */\r
-    FP_RP=FE_UPWARD,        /* round toward positive infinity */\r
-    FP_RM=FE_DOWNWARD,      /* round toward negative infinity */\r
-    FP_RZ=FE_TOWARDZERO     /* round to zero (truncate) */\r
-} fp_rnd;\r
-\r
-#endif /* !_ISOC99_SOURCE */\r
-\r
-#endif /* _NETBSD_SOURCE || _ISOC99_SOURCE */\r
-\r
-#endif /* _ARM_IEEEFP_H_ */\r