diff options
Diffstat (limited to 'src/string/strcpy.c')
-rw-r--r-- | src/string/strcpy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/strcpy.c b/src/string/strcpy.c index 6668a129..5f6e78a9 100644 --- a/src/string/strcpy.c +++ b/src/string/strcpy.c @@ -5,3 +5,11 @@ char *strcpy(char *restrict dest, const char *restrict src) __stpcpy(dest, src); return dest; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |