diff options
Diffstat (limited to 'lib/libc/string/strcat.c')
| -rw-r--r-- | lib/libc/string/strcat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/string/strcat.c b/lib/libc/string/strcat.c index 6caf8c78..f7267f00 100644 --- a/lib/libc/string/strcat.c +++ b/lib/libc/string/strcat.c @@ -1,3 +1,5 @@ +#include <string.h> // for strcat + char *strcat(char *restrict s1, const char *restrict s2) { char *d = s1; |
