]> git.proxmox.com Git - mirror_edk2.git/blobdiff - CryptoPkg/Library/BaseCryptLib/SysCall/HelperWrapper.c
CryptoPkg: Clean-up CRT Library Wrapper.
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / SysCall / HelperWrapper.c
diff --git a/CryptoPkg/Library/BaseCryptLib/SysCall/HelperWrapper.c b/CryptoPkg/Library/BaseCryptLib/SysCall/HelperWrapper.c
deleted file mode 100644 (file)
index bf4399c..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-/** @file\r
-  Wrapper Implementation of Helper Routines produced by the C Compiler\r
-  for the OpenSSL-based Cryptographic Library.\r
-\r
-Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>\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
-#include <OpenSslSupport.h>\r
-\r
-//---------------------------------------------------------\r
-// Helper Routines Wrapper\r
-//---------------------------------------------------------\r
-\r
-/* Divides a 64-bit signed value with a 64-bit signed value and returns\r
-   a 64-bit signed quotient and reminder */\r
-void _aulldvrm ()\r
-{\r
-  //\r
-  // Null _aulldvrm() Math function implementation to satisfy the linker, since\r
-  // there is no direct functionality logic dependency in present UEFI cases.\r
-  //\r
-  return;\r
-}\r
-\r
-\r
-/* Converts a scalar double-precision floating point value to a 32-bit integer */\r
-long _ftol2_sse (double dblSource)\r
-{\r
-  //\r
-  // OpenSSL uses this function due to using floating-point inside it.\r
-  // It is only present in 32-bit versions of the compiler.\r
-  // Null _ftol2_sse() function implementation to satisfy the linker, since\r
-  // there is no direct functionality logic dependency in present UEFI cases.\r
-  //\r
-  return 0;\r
-}\r
-\r
-/* Converts a scalar double-precision floating point value to a 32-bit integer */\r
-long _ftol2 (double dblSource)\r
-{\r
-  //\r
-  // Null _ftol2() function implementation to satisfy the linker, since\r
-  // there is no direct functionality logic dependency in present UEFI cases.\r
-  //\r
-  return 0;\r
-}\r