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