| 1 | /* Multiple versions of stpcpy |
|---|---|
| 2 | All versions must be listed in ifunc-impl-list.c. */ |
| 3 | #define USE_AS_STPCPY |
| 4 | #define STRCPY __stpcpy |
| 5 | #include "strcpy.S" |
| 6 | |
| 7 | weak_alias (__stpcpy, stpcpy) |
| 8 | libc_hidden_def (__stpcpy) |
| 9 | libc_hidden_builtin_def (stpcpy) |
| 10 |