diff options
Diffstat (limited to 'arch/microblaze/include/asm/string.h')
-rw-r--r-- | arch/microblaze/include/asm/string.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/microblaze/include/asm/string.h b/arch/microblaze/include/asm/string.h new file mode 100644 index 000000000000..f7728c90fc18 --- /dev/null +++ b/arch/microblaze/include/asm/string.h | |||
@@ -0,0 +1,24 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2006 Atmark Techno, Inc. | ||
3 | * | ||
4 | * This file is subject to the terms and conditions of the GNU General Public | ||
5 | * License. See the file "COPYING" in the main directory of this archive | ||
6 | * for more details. | ||
7 | */ | ||
8 | |||
9 | #ifndef _ASM_MICROBLAZE_STRING_H | ||
10 | #define _ASM_MICROBLAZE_STRING_H | ||
11 | |||
12 | #ifndef __KERNEL__ | ||
13 | |||
14 | #define __HAVE_ARCH_MEMSET | ||
15 | #define __HAVE_ARCH_MEMCPY | ||
16 | #define __HAVE_ARCH_MEMMOVE | ||
17 | |||
18 | extern void *memset(void *, int, __kernel_size_t); | ||
19 | extern void *memcpy(void *, const void *, __kernel_size_t); | ||
20 | extern void *memmove(void *, const void *, __kernel_size_t); | ||
21 | |||
22 | #endif /* __KERNEL__ */ | ||
23 | |||
24 | #endif /* _ASM_MICROBLAZE_STRING_H */ | ||