blob: 01ebe67584740ca53059b835a45aac8b2af2c51f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  | 
/*
 *  aboot/lib/memset.c
 *
 *  Copyright (c) 1995  David Mosberger (davidm@cs.arizona.edu)
 */
#include <linux/types.h>
#include <stddef.h>
/*
 * Booting is I/O bound so rather than a time-optimized, we want
 * a space-optimized memcpy.  Not that the rest of the loader
 * were particularly small, though...
 */
void *__memset(void *s, char c, size_t n)
{
	char *dst = s;
	while (n--) {
		*dst++ = c;
	}
	return s;
}
void *__constant_c_memset(void *dest, char c, size_t n)
{
	return __memset(dest, c, n);
}
  |