diff options
Diffstat (limited to 'src/string/stpcpy.c')
-rw-r--r-- | src/string/stpcpy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/stpcpy.c b/src/string/stpcpy.c index 4db46a9e..013d5baa 100644 --- a/src/string/stpcpy.c +++ b/src/string/stpcpy.c @@ -27,3 +27,11 @@ char *__stpcpy(char *restrict d, const char *restrict s) } weak_alias(__stpcpy, stpcpy); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |