1f83b8f148
Signed-off-by: Mike Frysinger <michael.frysinger@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
10 lines
178 B
C
10 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);
|
|
}
|