X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=EdkCompatibilityPkg%2FFoundation%2FLibrary%2FCompilerStub%2Fmemset.c;h=55603dc70f89cecca922a54ef52686afccd13582;hp=3dc442253fdd7dd606612fcc87dbec66c3a1cd49;hb=4ea9375a2d02a43671437e0d3d808d85afb30afa;hpb=e00e1d46940a267d6fbe92be4ed2e547b4e946dc diff --git a/EdkCompatibilityPkg/Foundation/Library/CompilerStub/memset.c b/EdkCompatibilityPkg/Foundation/Library/CompilerStub/memset.c index 3dc442253f..55603dc70f 100644 --- a/EdkCompatibilityPkg/Foundation/Library/CompilerStub/memset.c +++ b/EdkCompatibilityPkg/Foundation/Library/CompilerStub/memset.c @@ -1,7 +1,7 @@ /*++ -Copyright (c) 2006, Intel Corporation -All rights reserved. This program and the accompanying materials +Copyright (c) 2006, Intel Corporation. All rights reserved.
+This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php @@ -26,20 +26,11 @@ Abstract: --*/ #include "Tiano.h" -VOID * -memset ( - OUT VOID *Dest, - IN UINTN Char, - IN UINTN Count - ); -#ifdef _MSC_EXTENSIONS -#pragma intrinsic(memset) -#else VOID * memset ( OUT VOID *Dest, - IN UINTN Char, + IN int Char, IN UINTN Count ) { @@ -51,5 +42,4 @@ memset ( return Dest; } -#endif