mirror of https://github.com/acidanthera/audk.git
27 lines
621 B
C
27 lines
621 B
C
//------------------------------------------------------------------------------
|
|
//
|
|
// Copyright (c) 2017, Pete Batard. All rights reserved.<BR>
|
|
//
|
|
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
|
|
#if defined(_M_ARM64)
|
|
typedef unsigned __int64 size_t;
|
|
#else
|
|
typedef unsigned __int32 size_t;
|
|
#endif
|
|
|
|
void* memset(void *, int, size_t);
|
|
#pragma intrinsic(memset)
|
|
#pragma function(memset)
|
|
void *memset(void *s, int c, size_t n)
|
|
{
|
|
unsigned char *d = s;
|
|
|
|
while (n--)
|
|
*d++ = (unsigned char)c;
|
|
|
|
return s;
|
|
}
|