summaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm/string.h
blob: 435647abda8e16e9e4bd400d2203399e53c1a04b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __ASM_ARM_STRING_H
#define __ASM_ARM_STRING_H

#ifdef CONFIG_ARM_OPTIMZED_STRING_FUNCTIONS

#define __HAVE_ARCH_MEMCPY
extern void *memcpy(void *, const void *, __kernel_size_t);
#define __HAVE_ARCH_MEMSET
extern void *memset(void *, int, __kernel_size_t);

#endif

#endif