mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 10:06:43 +07:00
12 lines
187 B
C
12 lines
187 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);
|
||
|
}
|
||
|
|