]> git.proxmox.com Git - mirror_edk2.git/blobdiff - CryptoPkg/Library/IntrinsicLib/MemoryIntrinsics.c
CryptoPkg: Clean up source files
[mirror_edk2.git] / CryptoPkg / Library / IntrinsicLib / MemoryIntrinsics.c
index e095f9aa0dd64c20a6b96a190f8ee14f9b492780..324381b6e9c255cefd3407df04efbfd8fac44923 100644 (file)
@@ -2,7 +2,7 @@
   Intrinsic Memory Routines Wrapper Implementation for OpenSSL-based\r
   Cryptographic Library.\r
 \r
-Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2010 - 2018, 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
@@ -28,8 +28,8 @@ void * memset (void *dest, int ch, size_t count)
 {\r
   //\r
   // NOTE: Here we use one base implementation for memset, instead of the direct\r
-  //       optimized SetMem() wrapper. Because the IntrinsicLib has to be built \r
-  //       without whole program optimization option, and there will be some \r
+  //       optimized SetMem() wrapper. Because the IntrinsicLib has to be built\r
+  //       without whole program optimization option, and there will be some\r
   //       potential register usage errors when calling other optimized codes.\r
   //\r
 \r
@@ -44,7 +44,7 @@ void * memset (void *dest, int ch, size_t count)
   while (count-- != 0) {\r
     *(Pointer++) = (UINT8)ch;\r
   }\r
-  \r
+\r
   return dest;\r
 }\r
 \r