aboutsummaryrefslogtreecommitdiffstats
path: root/test/scripts/syntaxerr.py
Commit message (Expand)AuthorAgeFilesLines
* Rip out old script interface, start replacing with new stubs.Aldo Cortesi2011-08-031-0/+3
/openwrt/upstream/tree/target/linux/generic/patches-4.1?h=v22.03.0-rc1&id=a0c49ef46f7caf5eb02c635d446218201008ecff'>patches-4.1/060-mips_decompressor_memmove.patch
blob: d215b80ab2d2ef88acff9e0a30cda830ba6a0993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- a/arch/mips/boot/compressed/string.c
+++ b/arch/mips/boot/compressed/string.c
@@ -26,3 +26,19 @@ void *memset(void *s, int c, size_t n)
 		ss[i] = c;
 	return s;
 }
+
+void *memmove(void *__dest, __const void *__src, size_t count)
+{
+	unsigned char *d = __dest;
+	const unsigned char *s = __src;
+
+	if (__dest == __src)
+		return __dest;
+
+	if (__dest < __src)
+		return memcpy(__dest, __src, count);
+
+	while (count--)
+		d[count] = s[count];
+	return __dest;
+}