aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/h8300/include/asm/string.h
blob: 5dc5a8ac054453bcd87e5de55d8d9fa6622017d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _H8300_STRING_H_
#define _H8300_STRING_H_

#ifdef __KERNEL__ /* only set these up for kernel code */

#include <asm/setup.h>
#include <asm/page.h>

#define __HAVE_ARCH_MEMSET
extern void *memset(void *s, int c, size_t count);

#define __HAVE_ARCH_MEMCPY
extern void *memcpy(void *d, const void *s, size_t count);

#endif /* KERNEL */

#endif