mirror of
https://github.com/bitwiseworks/gcc-os2.git
synced 2026-02-04 00:54:37 +00:00
Source URL: git://gcc.gnu.org/git/gcc.git Source Commit: 3e7b85061947bdc7c7465743ba90734566860821
12 lines
177 B
C
12 lines
177 B
C
/* Public domain. */
|
|
#include <stddef.h>
|
|
|
|
void *
|
|
memset (void *dest, int val, size_t len)
|
|
{
|
|
unsigned char *ptr = dest;
|
|
while (len-- > 0)
|
|
*ptr++ = val;
|
|
return dest;
|
|
}
|