mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 15:11:50 +00:00
1f83b8f148
Signed-off-by: Mike Frysinger <michael.frysinger@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
11 lines
178 B
C
11 lines
178 B
C
#include <linux/types.h>
|
|
|
|
#define strcpy __inline_strcpy
|
|
#include <asm/string.h>
|
|
#undef strcpy
|
|
|
|
char *strcpy(char *dest, const char *src)
|
|
{
|
|
return __inline_strcpy(dest, src);
|
|
}
|