aboutsummaryrefslogtreecommitdiffstats
path: root/arch/nds32/include/asm/string.h
diff options
context:
space:
mode:
authorGreentime Hu <greentime@andestech.com>2017-10-25 14:27:22 +0800
committerGreentime Hu <greentime@andestech.com>2018-02-22 10:44:33 +0800
commitace02e2badd12e34d781780517614c42dbbf8068 (patch)
treedcc51bcd5f0af76c52ef6e2e7276bae881967af6 /arch/nds32/include/asm/string.h
parentnds32: Signal handling support (diff)
downloadlinux-dev-ace02e2badd12e34d781780517614c42dbbf8068.tar.xz
linux-dev-ace02e2badd12e34d781780517614c42dbbf8068.zip
nds32: Library functions
This patch add support for various library functions. Signed-off-by: Vincent Chen <vincentc@andestech.com> Signed-off-by: Greentime Hu <greentime@andestech.com> Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/nds32/include/asm/string.h')
-rw-r--r--arch/nds32/include/asm/string.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/nds32/include/asm/string.h b/arch/nds32/include/asm/string.h
new file mode 100644
index 000000000000..179272caa540
--- /dev/null
+++ b/arch/nds32/include/asm/string.h
@@ -0,0 +1,17 @@
+// SPDX-License-Identifier: GPL-2.0
+// Copyright (C) 2005-2017 Andes Technology Corporation
+
+#ifndef __ASM_NDS32_STRING_H
+#define __ASM_NDS32_STRING_H
+
+#define __HAVE_ARCH_MEMCPY
+extern void *memcpy(void *, const void *, __kernel_size_t);
+
+#define __HAVE_ARCH_MEMMOVE
+extern void *memmove(void *, const void *, __kernel_size_t);
+
+#define __HAVE_ARCH_MEMSET
+extern void *memset(void *, int, __kernel_size_t);
+
+extern void *memzero(void *ptr, __kernel_size_t n);
+#endif