mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
21
arch/x86/boot/string.h
Normal file
21
arch/x86/boot/string.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef BOOT_STRING_H
|
||||
#define BOOT_STRING_H
|
||||
|
||||
/* Undef any of these macros coming from string_32.h. */
|
||||
#undef memcpy
|
||||
#undef memset
|
||||
#undef memcmp
|
||||
|
||||
void *memcpy(void *dst, const void *src, size_t len);
|
||||
void *memset(void *dst, int c, size_t len);
|
||||
int memcmp(const void *s1, const void *s2, size_t len);
|
||||
|
||||
/*
|
||||
* Access builtin version by default. If one needs to use optimized version,
|
||||
* do "undef memcpy" in .c file and link against right string.c
|
||||
*/
|
||||
#define memcpy(d,s,l) __builtin_memcpy(d,s,l)
|
||||
#define memset(d,c,l) __builtin_memset(d,c,l)
|
||||
#define memcmp __builtin_memcmp
|
||||
|
||||
#endif /* BOOT_STRING_H */
|
Loading…
Add table
Add a link
Reference in a new issue