aboutsummaryrefslogtreecommitdiff
path: root/src/mlibc/string/strcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mlibc/string/strcat.c')
-rw-r--r--src/mlibc/string/strcat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mlibc/string/strcat.c b/src/mlibc/string/strcat.c
index 3cc56f1..0448430 100644
--- a/src/mlibc/string/strcat.c
+++ b/src/mlibc/string/strcat.c
@@ -1,6 +1,7 @@
#include <mlibc/string.h>
-void strcat(char *dest, const char *orig) {
+void strcat(char *dest, const char *orig)
+{
size_t s_dest = strlen(dest);
size_t s_orig = strlen(orig);